8000 1.0.6 preprod to prod by tremblap · Pull Request #362 · flucoma/flucoma-max · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

1.0.6 preprod to prod #362

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Mar 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: flucoma/actions/env@main
- uses: flucoma/actions/max@main
with:
branch: origin/production
branch: origin/${{ github.ref_name }}

- uses: actions/upload-artifact@v3
with:
Expand All @@ -26,7 +26,7 @@ jobs:
- uses: flucoma/actions/env@main
- uses: flucoma/actions/max@main
with:
branch: origin/production
branch: origin/${{ github.ref_name }}

- name: sign and notarise
uses: flucoma/actions/distribution@main
Expand All @@ -46,7 +46,7 @@ jobs:
path: release-packaging/FluidCorpusManipulation/

- 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:
Expand All @@ -69,6 +69,14 @@ jobs:

- name: zip
run: zip -r FluCoMa-Max-"${{ needs.macbuild.outputs.version }}".zip "FluidCorpusManipulation"

- name: delete pre-existing release
uses: dev-drprasad/delete-tag-and-release@v0.2.1
with:
delete_release: true # default: false
tag_name: ${{ needs.macbuild.outputs.version }} # tag name to delete
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: package and upload
uses: softprops/action-gh-release@v1
Expand All @@ -78,4 +86,5 @@ jobs:
files: FluCoMa*
prerelease: true
tag_name: ${{ needs.macbuild.outputs.version }}
target_commitish: ${{ github.sha }}
draft: false
0