Release v0.19.1 #29
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
name: Publish agb | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install build tools | |
run: sudo apt-get update && sudo apt-get install build-essential zip -y | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Login to crates.io | |
run: cargo login ${{ secrets.CRATE_API }} | |
- uses: extractions/setup-just@v2 | |
- name: Publish crates | |
run: just publish | |
- name: Update template repo | |
env: | |
GITHUB_USERNAME: gwilymk | |
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | |
run: bash .github/scripts/update-template-repo.sh | |
- name: Build the examples | |
run: just build-roms | |
- name: Upload examples to the release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: examples/target/examples.zip | |
asset_name: examples.zip | |
tag: ${{ github.ref }} | |
overwrite: true | |
- name: Setup mdBook | |
uses: peaceiris/actions-mdbook@v1 | |
with: | |
mdbook-version: '0.4.13' | |
- name: Build the book | |
run: just build-book | |
- name: Deploy the book | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: book/book |