mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-05 04:15:58 +00:00
.
This commit is contained in:
10
.github/workflows/publish-embedded-packages.yaml
vendored
10
.github/workflows/publish-embedded-packages.yaml
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/publish.yaml
vendored
2
.github/workflows/publish.yaml
vendored
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user