mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
ci: fix secrets context not allowed in if conditional (#4726)
This commit is contained in:
parent
79a4a3671f
commit
9d9f95961d
1 changed files with 3 additions and 1 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -255,6 +255,8 @@ jobs:
|
|||
github-release:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [prepare-build-info, release-google, release-fdroid]
|
||||
env:
|
||||
INTERNAL_BUILDS_HOST: ${{ secrets.INTERNAL_BUILDS_HOST }}
|
||||
permissions:
|
||||
contents: write
|
||||
id-token: write
|
||||
|
|
@ -283,7 +285,7 @@ jobs:
|
|||
|
||||
- name: Create or Update internal GitHub Release
|
||||
continue-on-error: true
|
||||
if: ${{ secrets.INTERNAL_BUILDS_HOST != '' }}
|
||||
if: ${{ env.INTERNAL_BUILDS_HOST != '' }}
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
repository: ${{ secrets.INTERNAL_BUILDS_HOST }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue