Build in CI #1
Workflow file for this run
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
# Builds and releases a .dmg file. | |
name: Release Barista | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build-release: | |
uses: ./.github/workflows/build.yml | |
with: | |
save: true | |
upload-release: | |
name: upload-release | |
runs-on: ubuntu-latest | |
needs: [build-release] | |
steps: | |
- name: Get build artifacts | |
uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1 | |
with: | |
pattern: build_artifacts | |
path: build_artifacts | |
merge-multiple: true | |
- name: Generate dmg | |
run: | | |
npm install --global create-dmg | |
mkdir release | |
create-dmg "build_artifacts/Barista.app" "release" | |
- name: Print out all release files | |
run: | | |
echo "Generated $(ls ./release | wc -l) files:" | |
du -h -d 0 ./release/* | |
- name: Get app version and build number | |
run: | | |
APP_VERSION=$(xcrun agvtool mvers -terse1) | |
APP_BUILD=$(xcrun agvtool vers -terse) | |
echo "APP_VERSION=$APP_VERSION" >> $GITHUB_ENV | |
echo "APP_BUILD=$APP_BUILD" >> $GITHUB_ENV | |
- name: Create release and add release files | |
uses: softprops/action-gh-release@20e085ccc73308c2c8e43ab8da4f8d7ecbb94d4e # 2.0.1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
prerelease: false | |
tag_name: ${{ env.APP_VERSION }}-${{env.APP_BUILD}} | |
draft: true | |
fail_on_unmatched_files: true | |
name: ${{ env.APP_VERSION }}-${{env.APP_BUILD}} Release | |
body: | | |
<!-- Write summary here --> | |
--- | |
## Bug Fixes | |
## Features | |
## Changes | |
## Other | |
## Internal Changes | |
files: | | |
./build/* |