Skip to content

Commit

Permalink
added workflows for conda build and releases. Also added pull request…
Browse files Browse the repository at this point in the history
… template
  • Loading branch information
javierggt committed Feb 13, 2020
1 parent a5d4585 commit cb72474
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Description



## Testing

- [ ] Passes unit tests on MacOS, linux, Windows (at least one required)
- [ ] Functional testing

Fixes #
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release
on:
release:
types:
- created

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
echo skare3-release-merge-info --user $GITHUB_ACTOR --repository $GITHUB_REPOSITORY --sha $GITHUB_SHA
export GITHUB_PASSWORD=${{ secrets.GITHUB_TOKEN }}
skare3-release-merge-info --user $GITHUB_ACTOR --repository $GITHUB_REPOSITORY --sha $GITHUB_SHA
export GITHUB_PASSWORD=${{ secrets.CHANDRA_XRAY_TOKEN }}
echo skare3-create-issue --user chandra-xray --repository sot/skare3 --latest-release $GITHUB_REPOSITORY --label 'Package update'
skare3-create-issue --user chandra-xray --repository sot/skare3 --latest-release $GITHUB_REPOSITORY --label 'Package update'
echo done

0 comments on commit cb72474

Please sign in to comment.