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
|
2022-01-02 07:17:56 +11:00
|
|
|
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
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- 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 }}
|
2022-01-02 07:17:56 +11:00
|
|
|
run: bash .github/scripts/update-template-repo.sh
|
|
|
|
|
|
|
|
- name: Build the examples
|
2022-01-02 07:23:18 +11:00
|
|
|
run: bash .github/scripts/build-example-gba-files.sh
|
|
|
|
- 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
|