From ef1338a385a69e1231248639d238305c5de52f56 Mon Sep 17 00:00:00 2001 From: xxxvik-xakerxxx Date: Wed, 25 Oct 2023 12:29:30 +0000 Subject: [PATCH] :bug: test ci --- .github/workflows/main.yml | 2 +- .github/workflows/tag.yaml | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/tag.yaml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 65459ed..15a4c41 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,4 +30,4 @@ jobs: - name: Run Build run: | . $(werf ci-env github --as-file) - werf export service --tag ghcr.io/$GITHUB_REPOSITORY:$GITHUB_SHA + werf export web --tag ghcr.io/$GITHUB_REPOSITORY:$GITHUB_SHA diff --git a/.github/workflows/tag.yaml b/.github/workflows/tag.yaml new file mode 100644 index 0000000..9d00aec --- /dev/null +++ b/.github/workflows/tag.yaml @@ -0,0 +1,33 @@ +on: + push: + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' + +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_REF_NAME + - name: Run Build + run: | + . $(werf ci-env github --as-file) + werf export web --tag ghcr.io/$GITHUB_REPOSITORY:$GITHUB_REF_NAME