From 7a6d09cfacde08897802e9a61dedec97c9674ff0 Mon Sep 17 00:00:00 2001 From: Kseniya Shychko Date: Tue, 30 Jul 2024 04:08:16 +0200 Subject: [PATCH] feat(cd): ghcr.io setup and docker image build workflow (#84) * feat: add package workflow * fix: docker build target and args * fix: docker build target and args * fix: set docker build target to build * fix: docker build arg * fix: update conditions when package workflow is run --- .github/workflows/package.yml | 51 +++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/package.yml diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml new file mode 100644 index 00000000..b02db16f --- /dev/null +++ b/.github/workflows/package.yml @@ -0,0 +1,51 @@ +name: package + +on: + push: + tags: + - "v[0-9]+.[0-9]+.[0-9]+" + workflow_dispatch: + +env: + CI: false + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: docker meta details + id: meta + uses: docker/metadata-action@v5 + with: + images: ghcr.io/${{github.repository}} + flavor: | + latest=auto + tags: | + type=edge,branch=next + type=semver,pattern={{version}} + type=sha + + - name: Set up Docker + uses: docker/setup-buildx-action@v3 + + - name: Login to Github Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Push Release + uses: docker/build-push-action@v5 + with: + push: ${{ startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/next' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + target: build + build-args: | + CONFIG_FILE=./app-config.json + +