Merge pull request #6 from nichmor/feat/use-specific-rattler-build #13
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: Track how repro we are | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
compare-sha256: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: "latest" | |
- name: Build recipes and track if hash is equal | |
run: | | |
pixi run build_recipes | |
# - name: Build recipes and track if hash is equal | |
# run: | | |
# pixi run plot_data | |
# - name: Commit and push changes | |
# env: | |
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# run: | | |
# git config --local user.email "[email protected]" | |
# git config --local user.name "GitHub Action" | |
# git add data/history.json | |
# git add data/chart.png | |
# git add README.md | |
# git commit -m "Update file via GitHub Action" | |
# git push |