This commit is contained in:
Hugh Nimmo-Smith
2025-03-14 15:49:41 +00:00
parent 90e22dc59c
commit ba9d47aaf3
2 changed files with 6 additions and 6 deletions

View File

@@ -49,7 +49,7 @@ jobs:
- name: Create Checksum
run: find ${{ env.FILENAME_PREFIX }} -type f -print0 | sort -z | xargs -0 sha256sum | tee ${{ env.FILENAME_PREFIX }}.sha256
- name: Upload
if: ${{ !env.DRY_RUN }}
if: ${{ env.DRY_RUN == false }}
uses: softprops/action-gh-release@v2
with:
files: |
@@ -92,7 +92,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_RELEASE_TOKEN }}
- name: Add release note
if: ${{ !env.DRY_RUN }}
if: ${{ env.DRY_RUN == false }}
uses: softprops/action-gh-release@v2
with:
append_body: true
@@ -131,7 +131,7 @@ jobs:
java-version: "17"
- name: Publish AAR
if: ${{ !env.DRY_RUN }}
if: ${{ env.DRY_RUN == false }}
# TODO: can we do some kind of dry run?
env:
EC_VERSION: ${{ env.VERSION }}
@@ -142,7 +142,7 @@ jobs:
run: embedded/android/publish_android_package.sh -s
- name: Add release note
if: ${{ !env.DRY_RUN }}
if: ${{ env.DRY_RUN == false }}
uses: softprops/action-gh-release@v2
with:
append_body: true
@@ -203,7 +203,7 @@ jobs:
git push --tags ${{ env.DRY_RUN && '--dry-run' || '' }}
- name: Add release note
if: ${{ !env.DRY_RUN }}
if: ${{ env.DRY_RUN == false }}
uses: softprops/action-gh-release@v2
with:
append_body: true

View File

@@ -42,7 +42,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
with:
files: |
path: |
element-call-${{ github.event.release.tag_name }}.tar.gz
element-call-${{ github.event.release.tag_name }}.tar.gz.sha256