-
Notifications
You must be signed in to change notification settings - Fork 16
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 #160 from flucoma/pre-production
1.0.6 preprod to prod
- Loading branch information
Showing
3 changed files
with
29 additions
and
20 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 |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
- uses: flucoma/actions/env@main | ||
- uses: flucoma/actions/sc@main | ||
with: | ||
branch: origin/production | ||
branch: origin/${{ github.ref_name }} | ||
|
||
- name: sign binaries | ||
uses: flucoma/actions/distribution@main | ||
|
@@ -38,7 +38,7 @@ jobs: | |
- uses: flucoma/actions/env@main | ||
- uses: flucoma/actions/sc@main | ||
with: | ||
branch: origin/production | ||
branch: origin/${{ github.ref_name }} | ||
|
||
- name: remove pdb files | ||
run: Remove-Item install -Recurse -Include *.pdb | ||
|
@@ -61,7 +61,7 @@ jobs: | |
- uses: flucoma/actions/env@main | ||
- uses: flucoma/actions/sc@main | ||
with: | ||
branch: origin/production | ||
branch: origin/${{ github.ref_name }} | ||
|
||
- name: compress archive | ||
run: tar -zcvf FluCoMa-SC-Linux.tar.gz FluidCorpusManipulation | ||
|
@@ -73,7 +73,7 @@ jobs: | |
path: install/FluCoMa-SC-Linux.tar.gz | ||
|
||
- id: get-version | ||
run: echo "::set-output name=version::$(cat flucoma.version.rc)" | ||
run: echo "version=$(cat flucoma.version.rc)" >> $GITHUB_OUTPUT | ||
working-directory: build/_deps/flucoma-core-src | ||
|
||
release: | ||
|
@@ -93,6 +93,14 @@ jobs: | |
with: | ||
name: linuxbuild | ||
|
||
- name: delete pre-existing release | ||
uses: dev-drprasad/[email protected] | ||
with: | ||
delete_release: true # default: false | ||
tag_name: ${{ needs.linuxbuild.outputs.version }} # tag name to delete | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: package and upload | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
|
@@ -101,5 +109,6 @@ jobs: | |
files: FluCoMa* | ||
prerelease: true | ||
tag_name: ${{ needs.linuxbuild.outputs.version }} | ||
target_commitish: ${{ github.sha }} | ||
draft: 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