-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workflow update: apply again the release workflow authentication chan…
…ges, and undo the previous revert
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Release | ||
on: | ||
release: | ||
types: | ||
- released | ||
|
||
jobs: | ||
patch-release: | ||
runs-on: ubuntu-latest | ||
name: Patch Release | ||
steps: | ||
- name: Fetch Skare3 Tools | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: sot/skare3_tools | ||
ref: master | ||
path: skare3_tools | ||
- name: Release Description and Skare3 Issue | ||
run: | | ||
sudo -H pip3 install setuptools wheel | ||
sudo -H pip3 install -r ./skare3_tools/requirements.txt | ||
sudo -H pip3 install ./skare3_tools | ||
skare3-release-merge-info --repository $GITHUB_REPOSITORY --sha $GITHUB_SHA | ||
skare3-create-issue --repository sot/skare3 --latest-release $GITHUB_REPOSITORY --label 'Package update' | ||
env: | ||
GITHUB_API_TOKEN: ${{ secrets.SKARE3_CI_API_TOKEN }} |