fix: fix run build job

This commit is contained in:
Svyatoslav Shchipunov
2024-10-02 12:06:38 +07:00
parent cd0e27204e
commit 9c44a73425

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 }}