-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into feature/issue-871_…
…tabulate-by-csv-updates
- Loading branch information
Showing
134 changed files
with
3,017 additions
and
2,703 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,6 +104,11 @@ jobs: | |
input: "~/.gradle/caches" | ||
zipFilename: ${{steps.cachefn.outputs.FILEPATH}} | ||
|
||
- name: "Generate SHA512 for executable" | ||
shell: bash | ||
run: | | ||
./.github/workflows/sha.sh ${{ steps.exefn.outputs.FILEPATH }} ${{ runner.os }} 512 > ${{steps.exefn.outputs.FILEPATH}}.sha512 | ||
- name: "Generate SHA512 for plugins cache" | ||
shell: bash | ||
run: | | ||
|
@@ -166,10 +171,11 @@ jobs: | |
echo "Attach staple" | ||
xcrun stapler staple ${{ steps.exefn.outputs.FILEPATH }} | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: Package | ||
if-no-files-found: error | ||
overwrite: true | ||
path: | | ||
${{ github.workspace }}/${{ steps.zipfn.outputs.FILEPATH }} | ||
${{ github.workspace }}/${{ steps.zipfn.outputs.FILEPATH }}.sha512 | ||
|
@@ -180,14 +186,33 @@ jobs: | |
${{ github.workspace }}/${{ steps.cachefn.outputs.FILEPATH }}.sha512 | ||
${{ github.workspace }}/${{ steps.checksumsfn.outputs.FILEPATH }} | ||
${{ github.workspace }}/${{ steps.checksumsfn.outputs.FILEPATH }}.sha512 | ||
retention-days: 90 | ||
- uses: dev-drprasad/[email protected] | ||
# Note: to update the date of the release, it must be deleted and then recreated | ||
if: github.event_name == 'release' || github.event_name == 'schedule' | ||
with: | ||
tag_name: build-${{ github.ref_name }} | ||
delete_release: true | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: "Upload binaries to release" | ||
uses: svenstaro/upload-release-action@v2 | ||
if: github.event_name == 'release' || github.event_name == 'schedule' | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: build/${{ steps.basefn.outputs.FILEPATH }}* | ||
tag: ${{ github.ref_name }} | ||
tag: build-${{ github.ref_name }} | ||
overwrite: true | ||
file_glob: true | ||
make_latest: false | ||
|
||
- name: "Upload cache to release" | ||
uses: svenstaro/upload-release-action@v2 | ||
if: github.event_name == 'release' || github.event_name == 'schedule' | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: cache/* | ||
tag: build-${{ github.ref_name }} | ||
overwrite: true | ||
file_glob: true | ||
make_latest: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: "Build, Lint, and Test" | ||
|
||
on: [push] | ||
on: [pull_request] | ||
|
||
jobs: | ||
build: | ||
|
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
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
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.