-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: mydefichain <[email protected]>
- Loading branch information
1 parent
a6cdbdb
commit 89a656d
Showing
1 changed file
with
189 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
name: Release_new | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
# TODO(fuxing): All external actions that are not maintained by an org or reputable individual to be removed. | ||
|
||
jobs: | ||
publish_linux_version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
|
||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 | ||
with: | ||
node-version: 20 | ||
|
||
- name: install dependencies | ||
run: npm cache clean --force && npm run init | ||
|
||
- name: Build app | ||
run: npm run pre:build:linux | ||
|
||
- name: Publish app | ||
run: npm run publish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
create-linux-checksum: | ||
needs: | ||
- publish_linux_version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
|
||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Get App Version | ||
uses: nyaa8/package-version@05847b5b2b4e8cefeca8d50ee5940a6445a5773a | ||
|
||
- name: Fetch Release Asset | ||
uses: Legion2/download-release-action@68df3d242858e28a7e6d8b9838a3e6730cdfc422 | ||
with: | ||
repository: 'DeFiCh/app' | ||
tag: 'v${{ env.PACKAGE_VERSION}}' | ||
file: 'DeFi-Wallet-${{ env.PACKAGE_VERSION}}.AppImage' | ||
|
||
- name: Get Release Info with Tag Name | ||
id: latest_release_info | ||
uses: bruceadams/get-release@3a8733307b85cd96d52772b037617bd63d99522e | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Generate SHA256 checksum | ||
run: | | ||
sha256sum DeFi-Wallet-${{ env.PACKAGE_VERSION}}.AppImage > DeFi-Wallet-${{ env.PACKAGE_VERSION}}.AppImage.SHA256 | ||
- name: Upload checksum - Linux | ||
uses: softprops/action-gh-release@a80139913ad69754b738283897e8a1e3362b1a03 | ||
with: | ||
fail_on_unmatched_files: true | ||
files: ./DeFi-Wallet-${{ env.PACKAGE_VERSION}}.AppImage.SHA256 | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
publish_mac_version: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
|
||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 | ||
with: | ||
node-version: 20 | ||
|
||
- name: install dependencies | ||
run: npm cache clean --force && npm run init | ||
|
||
- name: Build app | ||
run: npm run pre:build:mac | ||
|
||
- name: Publish app | ||
run: npm run publish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CSC_LINK: ${{ secrets.CSC_LINK}} | ||
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD}} | ||
CI: true | ||
APPLE_ID: ${{ secrets.APPLE_ID}} | ||
TEAM_ID: ${{ secrets.TEAM_ID}} | ||
APPLE_ID_PASS: ${{ secrets.APPLE_ID_PASS}} | ||
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASS}} | ||
|
||
create-mac-checksum: | ||
needs: | ||
- publish_mac_version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
|
||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Get App Version | ||
uses: nyaa8/package-version@05847b5b2b4e8cefeca8d50ee5940a6445a5773a | ||
|
||
- name: Fetch Release Asset | ||
uses: Legion2/download-release-action@68df3d242858e28a7e6d8b9838a3e6730cdfc422 | ||
with: | ||
repository: 'DeFiCh/app' | ||
tag: 'v${{ env.PACKAGE_VERSION}}' | ||
file: 'DeFi-Wallet-${{ env.PACKAGE_VERSION}}.dmg' | ||
|
||
- name: Get Release Info with Tag Name | ||
id: latest_release_info | ||
uses: bruceadams/get-release@3a8733307b85cd96d52772b037617bd63d99522e | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Generate SHA256 checksum | ||
run: | | ||
sha256sum DeFi-Wallet-${{ env.PACKAGE_VERSION}}.dmg > DeFi-Wallet-${{ env.PACKAGE_VERSION}}.dmg.SHA256 | ||
- name: Upload checksum - Mac | ||
uses: softprops/action-gh-release@a80139913ad69754b738283897e8a1e3362b1a03 | ||
with: | ||
fail_on_unmatched_files: true | ||
files: ./DeFi-Wallet-${{ env.PACKAGE_VERSION}}.dmg.SHA256 | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
publish_windows_version: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
|
||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 | ||
with: | ||
node-version: 20 | ||
|
||
- name: install dependencies | ||
run: npm cache clean --force && npm run init | ||
|
||
- name: Build app | ||
run: npm run pre:build:win | ||
|
||
- name: Publish app | ||
run: npm run publish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
create-windows-checksum: | ||
needs: | ||
- publish_windows_version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
|
||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Get App Version | ||
uses: nyaa8/package-version@05847b5b2b4e8cefeca8d50ee5940a6445a5773a | ||
|
||
- name: Fetch Release Asset | ||
uses: Legion2/download-release-action@68df3d242858e28a7e6d8b9838a3e6730cdfc422 | ||
with: | ||
repository: 'DeFiCh/app' | ||
tag: 'v${{ env.PACKAGE_VERSION}}' | ||
file: 'DeFi-Wallet-Setup-${{ env.PACKAGE_VERSION}}.exe' | ||
|
||
- name: Get Release Info with Tag Name | ||
id: latest_release_info | ||
uses: bruceadams/get-release@3a8733307b85cd96d52772b037617bd63d99522e | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Generate SHA256 checksum | ||
run: | | ||
sha256sum DeFi-Wallet-Setup-${{ env.PACKAGE_VERSION}}.exe > DeFi-Wallet-Setup-${{ env.PACKAGE_VERSION}}.exe.SHA256 | ||
- name: Upload checksum - Windows | ||
uses: softprops/action-gh-release@a80139913ad69754b738283897e8a1e3362b1a03 | ||
with: | ||
fail_on_unmatched_files: true | ||
files: ./DeFi-Wallet-Setup-${{ env.PACKAGE_VERSION}}.exe.SHA256 | ||
token: ${{ secrets.GITHUB_TOKEN }} |