mirror of
https://github.com/vector-im/element-call.git
synced 2026-08-29 21:15:19 +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
|
- name: Create Checksum
|
||||||
run: find ${{ env.FILENAME_PREFIX }} -type f -print0 | sort -z | xargs -0 sha256sum | tee ${{ env.FILENAME_PREFIX }}.sha256
|
run: find ${{ env.FILENAME_PREFIX }} -type f -print0 | sort -z | xargs -0 sha256sum | tee ${{ env.FILENAME_PREFIX }}.sha256
|
||||||
- name: Upload
|
- name: Upload
|
||||||
if: ${{ !env.DRY_RUN }}
|
if: ${{ env.DRY_RUN == false }}
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
@@ -92,7 +92,7 @@ jobs:
|
|||||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_RELEASE_TOKEN }}
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_RELEASE_TOKEN }}
|
||||||
|
|
||||||
- name: Add release note
|
- name: Add release note
|
||||||
if: ${{ !env.DRY_RUN }}
|
if: ${{ env.DRY_RUN == false }}
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
append_body: true
|
append_body: true
|
||||||
@@ -131,7 +131,7 @@ jobs:
|
|||||||
java-version: "17"
|
java-version: "17"
|
||||||
|
|
||||||
- name: Publish AAR
|
- name: Publish AAR
|
||||||
if: ${{ !env.DRY_RUN }}
|
if: ${{ env.DRY_RUN == false }}
|
||||||
# TODO: can we do some kind of dry run?
|
# TODO: can we do some kind of dry run?
|
||||||
env:
|
env:
|
||||||
EC_VERSION: ${{ env.VERSION }}
|
EC_VERSION: ${{ env.VERSION }}
|
||||||
@@ -142,7 +142,7 @@ jobs:
|
|||||||
run: embedded/android/publish_android_package.sh -s
|
run: embedded/android/publish_android_package.sh -s
|
||||||
|
|
||||||
- name: Add release note
|
- name: Add release note
|
||||||
if: ${{ !env.DRY_RUN }}
|
if: ${{ env.DRY_RUN == false }}
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
append_body: true
|
append_body: true
|
||||||
@@ -203,7 +203,7 @@ jobs:
|
|||||||
git push --tags ${{ env.DRY_RUN && '--dry-run' || '' }}
|
git push --tags ${{ env.DRY_RUN && '--dry-run' || '' }}
|
||||||
|
|
||||||
- name: Add release note
|
- name: Add release note
|
||||||
if: ${{ !env.DRY_RUN }}
|
if: ${{ env.DRY_RUN == false }}
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
append_body: true
|
append_body: true
|
||||||
|
|||||||
2
.github/workflows/publish.yaml
vendored
2
.github/workflows/publish.yaml
vendored
@@ -42,7 +42,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
with:
|
with:
|
||||||
files: |
|
path: |
|
||||||
element-call-${{ github.event.release.tag_name }}.tar.gz
|
element-call-${{ github.event.release.tag_name }}.tar.gz
|
||||||
element-call-${{ github.event.release.tag_name }}.tar.gz.sha256
|
element-call-${{ github.event.release.tag_name }}.tar.gz.sha256
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user