From ef704ae4aa82042fb50a3d6af48d892fdd05ce1d Mon Sep 17 00:00:00 2001 From: ardier16 Date: Tue, 12 Dec 2023 16:05:40 +0200 Subject: [PATCH] Add CI --- .github/workflows/branch.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/branch.yml diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml new file mode 100644 index 0000000..4b00592 --- /dev/null +++ b/.github/workflows/branch.yml @@ -0,0 +1,33 @@ +on: + push: + branches: + - 'hotfix/build' + +jobs: + converge: + name: Converge + runs-on: ubuntu-latest + steps: + + - name: Checkout code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Install werf + uses: werf/actions/install@v1.2 + + - name: Log in to registry + # This is where you will update the personal access token to GITHUB_TOKEN + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin + + - name: Run echo + run: | + werf version + docker version + echo $GITHUB_REPOSITORY + echo $GITHUB_SHA + - name: Run Build + run: | + . $(werf ci-env github --as-file) + werf export web --tag ghcr.io/$GITHUB_REPOSITORY:$GITHUB_SHA