From 747d976f78b721ed033f688ab7e6a67ff5afd2ae Mon Sep 17 00:00:00 2001 From: Reza Behzadan Date: Fri, 3 Jan 2025 12:09:33 -0500 Subject: [PATCH] Update gitea workflow for native builds --- .gitea/workflows/native.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/native.yml b/.gitea/workflows/native.yml index 8128e26..a1bf410 100644 --- a/.gitea/workflows/native.yml +++ b/.gitea/workflows/native.yml @@ -3,10 +3,7 @@ name: Generic Build on: push: tags: - - 'v*' - tags-ignore: - - 'v*-arm64' - - 'v*-amd64' + - 'v*-native' jobs: docker: @@ -15,6 +12,10 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Extract version + id: version + run: echo "VERSION=$(echo ${{ gitea.ref_name }} | sed 's/-native//')" >> $GITHUB_OUTPUT + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -32,4 +33,4 @@ jobs: push: true tags: | dcr.behzadan.com/reza/wireguard-3proxy:latest - dcr.behzadan.com/reza/wireguard-3proxy:${{ gitea.ref_name }} + dcr.behzadan.com/reza/wireguard-3proxy:${{ steps.version.outputs.VERSION }}