agb/.github/workflows/publish-agb.yml

52 lines
1.4 KiB
YAML
Raw Normal View History

2021-06-21 08:44:40 +10:00
name: Publish agb
2021-06-21 07:58:54 +10:00
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-20.04
steps:
2021-06-21 08:59:16 +10:00
- name: Install build tools
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi zip -y
2021-06-21 07:58:54 +10:00
- name: Check out repository
2022-03-02 07:05:55 +11:00
uses: actions/checkout@v3
2021-06-21 07:58:54 +10:00
- name: Login to crates.io
run: cargo login ${{ secrets.CRATE_API }}
- name: Publish agb
run: cargo publish
2021-11-25 09:44:11 +11:00
working-directory: ./agb
- name: Update template repo
env:
GITHUB_USERNAME: gwilymk
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
run: bash .github/scripts/update-template-repo.sh
- uses: extractions/setup-just@v1
- 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
2022-03-06 07:58:15 +11:00
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: '0.4.13'
- name: Build the book
2022-02-25 08:36:18 +11:00
run: just build-book
- name: Deploy the book
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages
folder: book/book