1
0
Fork 0
mirror of synced 2024-10-05 20:53:27 +13:00
appwrite/.github/workflows/publish.yml

46 lines
1.1 KiB
YAML
Raw Normal View History

2023-06-07 01:05:57 +12:00
name: "Build and Publish"
on:
push:
branches:
- feat-db-pools-master
tags:
jobs:
2023-06-06 22:03:22 +12:00
build-publish:
name: Build and Publish
runs-on: ubuntu-latest
2023-06-06 22:03:22 +12:00
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 2
submodules: recursive
ref: feat-db-pools-master
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: appwrite/cloud
tags: |
type=pep440,pattern={{version}},value=${{ github.ref_name }}
2023-06-06 22:03:22 +12:00
- name: Build & Publish to DockerHub
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64
build-args: |
VERSION=${{ steps.meta.outputs.version }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}