Merge pull request #22 from Slava-Shchipunov/fix/fix-release-sync-workflow

fix: fix run build job
This commit is contained in:
Slava-Shchipunov
2024-10-02 12:07:30 +07:00
committed by GitHub

View File

@@ -53,9 +53,13 @@ jobs:
--arg name "Build amnezia wg for all devices with openwrt ${{ steps.get_release.outputs.release_tag }}" \
--arg body "$ART" \
'{ tag_name: $tag, name: $name, body: $body }')"
run-build:
runs-on: ubuntu-latest
needs: sync-releases
if: needs.sync-releases.outputs.release_exists == 'false'
steps:
- name: Run build job
if: steps.check_release.outputs.release_exists == 'false'
uses: ./.github/workflows/build-module.yml
with:
tag_name: ${{ steps.get_release.outputs.release_tag }}
tag_name: ${{ needs.sync-releases.outputs.release_tag }}