generated from DSACMS/.github
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #158 from DSACMS/dev
Release Dev into Main
- Loading branch information
Showing
10 changed files
with
244 additions
and
94 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 |
---|---|---|
|
@@ -31,8 +31,8 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
# windows-latest, macos-latest | ||
os: [ubuntu-latest,macos-latest] | ||
# windows-latest | ||
|
||
defaults: | ||
run: | ||
|
@@ -90,7 +90,36 @@ jobs: | |
APPLEID: ${{ secrets.APPLEID }} | ||
APPLEIDPASS: ${{ secrets.APPLEIDPASS }} | ||
run: npm run dist | ||
|
||
- name: Display structure of files | ||
run: ls -R | ||
- name: Upload MacOS DMG Blockmap | ||
uses: actions/upload-artifact@v4 | ||
if: startsWith(matrix.os, 'macos') | ||
with: | ||
name: DedupliFHIR-${{ github.ref_name }}-arm64.dmg.blockmap | ||
path: | | ||
./frontend/dist/DedupliFHIR-*-arm64.dmg.blockmap | ||
- name: Upload MacOS DMG | ||
uses: actions/upload-artifact@v4 | ||
if: startsWith(matrix.os, 'macos') | ||
with: | ||
name: DedupliFHIR-${{ github.ref_name }}-arm64.dmg | ||
path: | | ||
./frontend/dist/DedupliFHIR-*-arm64.dmg | ||
- name: Upload MacOS Zip | ||
uses: actions/upload-artifact@v4 | ||
if: startsWith(matrix.os, 'macos') | ||
with: | ||
name: DedupliFHIR-${{ github.ref_name }}-arm64-mac.zip | ||
path: | | ||
./frontend/dist/DedupliFHIR-*-arm64-mac.zip | ||
- name: Upload MacOS Zip Blockmap | ||
uses: actions/upload-artifact@v4 | ||
if: startsWith(matrix.os, 'macos') | ||
with: | ||
name: DedupliFHIR-${{ github.ref_name }}-arm64-mac.zip.blockmap | ||
path: | | ||
./frontend/dist/DedupliFHIR-*-arm64-mac.zip.blockmap | ||
- name: Upload AppImage | ||
uses: actions/upload-artifact@v4 | ||
if: startsWith(matrix.os, 'ubuntu') | ||
|
@@ -119,6 +148,22 @@ jobs: | |
uses: actions/download-artifact@v4 | ||
with: | ||
name: DedupliFHIR-${{ github.ref_name }}.snap | ||
- name: Download DedupliFHIR-${{ github.ref_name }}-arm64.dmg.blockmap artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: DedupliFHIR-${{ github.ref_name }}-arm64.dmg.blockmap | ||
- name: Download DedupliFHIR-${{ github.ref_name }}-arm64.dmg artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: DedupliFHIR-${{ github.ref_name }}-arm64.dmg | ||
- name: Download DedupliFHIR-${{ github.ref_name }}-arm64-mac.zip artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: DedupliFHIR-${{ github.ref_name }}-arm64-mac.zip | ||
- name: Download DedupliFHIR-${{ github.ref_name }}-arm64-mac.zip.blockmap artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: DedupliFHIR-${{ github.ref_name }}-arm64-mac.zip.blockmap | ||
- name: Display structure of downloaded files | ||
run: ls -R | ||
- name: Upload DedupliFHIR-${{ github.ref_name }}.AppImage to release | ||
|
@@ -135,3 +180,32 @@ jobs: | |
tag: ${{ github.ref_name }} | ||
file: deduplifhir-app_${{ github.ref_name }}_amd64.snap | ||
overwrite: false | ||
- name: Upload DedupliFHIR-${{ github.ref_name }}-arm64.dmg.blockmap to release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
file: DedupliFHIR-${{ github.ref_name }}-arm64.dmg.blockmap | ||
overwrite: false | ||
- name: Upload DedupliFHIR-${{ github.ref_name }}-arm64.dmg to release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
file: DedupliFHIR-${{ github.ref_name }}-arm64.dmg | ||
overwrite: false | ||
- name: Upload DedupliFHIR-${{ github.ref_name }}-arm64-mac.zip to release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
file: DedupliFHIR-${{ github.ref_name }}-arm64-mac.zip | ||
overwrite: false | ||
|
||
- name: Upload DedupliFHIR-${{ github.ref_name }}-arm64-mac.zip.blockmap to release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
file: DedupliFHIR-${{ github.ref_name }}-arm64-mac.zip.blockmap | ||
overwrite: false |
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.