From c2a95baabcd1111ae0f717012377933e8375c081 Mon Sep 17 00:00:00 2001 From: AlexRoehm Date: Sun, 31 Mar 2024 21:47:40 +0200 Subject: [PATCH] build image action for refactor branch --- .github/workflows/cicd-branch.yml | 70 +++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 .github/workflows/cicd-branch.yml diff --git a/.github/workflows/cicd-branch.yml b/.github/workflows/cicd-branch.yml new file mode 100644 index 0000000..f26e9ee --- /dev/null +++ b/.github/workflows/cicd-branch.yml @@ -0,0 +1,70 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: Create Image for Refactoring Branch + +on: workflow_dispatch + +jobs: + build: + if: "!contains(github.event.head_commit.message, 'skip ci')" + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v4 + with: + ref: refactor/separate-backend + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + - run: yarn install + - run: yarn build + + deploy: + needs: build + if: "!contains(github.event.head_commit.message, 'skip cd')" + runs-on: ubuntu-latest + + steps: + - name: Check out + uses: actions/checkout@v4 + with: + ref: refactor/separate-backend + - name: Docker meta + id: docker_meta + uses: crazy-max/ghaction-docker-meta@v4 + with: + images: ghcr.io/ccfreiburg/podkashde + tags: | + type=sha + type=raw,latest-branch + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to GHCR + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GHCR_PASSWORD }} + + - name: Build image + uses: docker/build-push-action@v5 + with: + context: . + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.docker_meta.outputs.tags }} + labels: ${{ steps.docker_meta.outputs.labels }} + build-args: | + BUILDTIME=${{ fromJSON(steps.docker_meta.outputs.json).labels['org.opencontainers.image.created'] }} + VERSION=${{ fromJSON(steps.docker_meta.outputs.json).labels['org.opencontainers.image.version'] }} + REVISION=${{ fromJSON(steps.docker_meta.outputs.json).labels['org.opencontainers.image.revision'] }} \ No newline at end of file