mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
42 lines
1 KiB
YAML
42 lines
1 KiB
YAML
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
|