release #5
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
name: release | |
on: | |
workflow_dispatch: | |
jobs: | |
mac: | |
runs-on: macos-latest | |
outputs: | |
version: ${{ steps.get-version.outputs.version }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" # This will checkout all submodules recursively | |
- uses: flucoma/actions/env@main | |
- name: Update flucoma-cli submodule | |
run: | | |
git submodule update --init --recursive --remote | |
cd flucoma-cli | |
git status # Just to verify the current state | |
- name: Prepare directory structure | |
run: | | |
mkdir -p flucoma-cli/build | |
cp -R flucoma-cli/* flucoma-cli/build/ | |
ls -R flucoma-cli # List directory structure for debugging | |
- name: Run flucoma/actions/cli | |
uses: flucoma/actions/cli@main | |
with: | |
branch: production | |
- name: Create tarball | |
run: | | |
mkdir -p FluCoMa-CLI-Mac | |
cp flucoma-cli/build/fluid-* FluCoMa-CLI-Mac/ | |
tar -czf FluCoMa-CLI-Mac.tar.gz FluCoMa-CLI-Mac | |
- name: Sign binaries | |
uses: flucoma/actions/distribution@main | |
with: | |
glob: "FluCoMa-CLI-Mac/*.fluid-*" | |
package: "FluCoMa-CLI-Mac" | |
codesign_options: "runtime" | |
cert: ${{ secrets.CERT }} | |
certpwd: ${{ secrets.CERTPWD }} | |
teamid: ${{ secrets.WWDRTEAMID }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: macbuild | |
path: FluCoMa-CLI-Mac.tar.gz | |
- id: get-version | |
run: echo "version=$(cat flucoma.version.rc)" >> $GITHUB_OUTPUT | |
working-directory: flucoma-cli/build/_deps/flucoma-core-src | |
release: | |
runs-on: ubuntu-20.04 | |
needs: [mac] | |
steps: | |
- uses: actions/download-artifact@v2 | |
with: | |
name: macbuild | |
- name: delete pre-existing release | |
uses: dev-drprasad/[email protected] | |
with: | |
delete_release: true | |
tag_name: ${{ needs.mac.outputs.version }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: package and upload | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: ${{ needs.mac.outputs.version }} | |
body: "This is a release build of the FluCoMa CLI tools for homebrew on Mac. The build hash is ${{ github.sha }}" | |
files: FluCoMa-CLI-Mac.tar.gz | |
prerelease: true | |
tag_name: ${{ needs.mac.outputs.version }} | |
target_commitish: ${{ github.sha }} | |
draft: false |