-
-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve release template * Update release.yml * Update test.yml
- Loading branch information
1 parent
698a69a
commit 9c28efa
Showing
2 changed files
with
26 additions
and
13 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 |
---|---|---|
|
@@ -18,25 +18,14 @@ jobs: | |
AGENT_PROFILE_DATA: ${{ secrets.AGENT_PROFILE_DATA }} | ||
run: ./.github/scripts/signing.sh | ||
- name: Set Environment | ||
run: sudo xcrun xcode-select -s /Applications/Xcode_12.2.app | ||
run: sudo xcrun xcode-select -s /Applications/Xcode_12.3.app | ||
- name: Test | ||
run: xcrun xcodebuild test -project Secretive.xcodeproj -scheme Secretive | ||
build: | ||
runs-on: macos-11.0 | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ github.ref }} | ||
body: "## Build\nhttps://github.com/maxgoedjen/secretive/actions/runs/${{ github.run_id }}" | ||
draft: true | ||
prerelease: false | ||
- name: Setup Signing | ||
env: | ||
SIGNING_DATA: ${{ secrets.SIGNING_DATA }} | ||
|
@@ -70,6 +59,30 @@ jobs: | |
run: | | ||
shasum -a 512 Secretive.zip | ||
shasum -a 512 Archive.zip | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ github.ref }} | ||
body: | | ||
Update description | ||
## Features | ||
## Fixes | ||
## Minimum macOS Version | ||
## Build | ||
https://github.com/maxgoedjen/secretive/actions/runs/${{ github.run_id }} | ||
draft: true | ||
prerelease: false | ||
- name: Upload App to Release | ||
id: upload-release-asset | ||
uses: actions/[email protected] | ||
|
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