mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
Replace all the crate builds with a single 'publish subcrate'
This commit is contained in:
parent
da1fea86fe
commit
71e2e64c48
20
.github/workflows/publish-agb-macros.yml
vendored
20
.github/workflows/publish-agb-macros.yml
vendored
|
@ -1,20 +0,0 @@
|
||||||
name: Publish agb-macros
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- agb-macros/v*
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- name: Install build tools
|
|
||||||
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi -y
|
|
||||||
- name: Check out repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Login to crates.io
|
|
||||||
run: cargo login ${{ secrets.CRATE_API }}
|
|
||||||
- name: Publish agb-macros
|
|
||||||
run: cargo publish
|
|
||||||
working-directory: ./agb-macros
|
|
20
.github/workflows/publish-image-converter.yml
vendored
20
.github/workflows/publish-image-converter.yml
vendored
|
@ -1,20 +0,0 @@
|
||||||
name: Publish agb-image-converter
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- agb-image-converter/v*
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- name: Install build tools
|
|
||||||
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi -y
|
|
||||||
- name: Check out repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Login to crates.io
|
|
||||||
run: cargo login ${{ secrets.CRATE_API }}
|
|
||||||
- name: Publish agb-image-converter
|
|
||||||
run: cargo publish
|
|
||||||
working-directory: ./agb-image-converter
|
|
20
.github/workflows/publish-sound-converter.yml
vendored
20
.github/workflows/publish-sound-converter.yml
vendored
|
@ -1,20 +0,0 @@
|
||||||
name: Publish agb-sound-converter
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- agb-sound-converter/v*
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
steps:
|
|
||||||
- name: Install build tools
|
|
||||||
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi -y
|
|
||||||
- name: Check out repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Login to crates.io
|
|
||||||
run: cargo login ${{ secrets.CRATE_API }}
|
|
||||||
- name: Publish agb-sound-converter
|
|
||||||
run: cargo publish
|
|
||||||
working-directory: ./agb-sound-converter
|
|
|
@ -1,9 +1,9 @@
|
||||||
name: Publish agb-fixnum
|
name: Publish sub crate
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- agb-fixnum/v*
|
- */v*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -15,6 +15,5 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Login to crates.io
|
- name: Login to crates.io
|
||||||
run: cargo login ${{ secrets.CRATE_API }}
|
run: cargo login ${{ secrets.CRATE_API }}
|
||||||
- name: Publish agb-fixnum
|
- name: Publish crate
|
||||||
run: cargo publish
|
run: bash .github/scripts/publish-crate.sh
|
||||||
working-directory: ./agb-fixnum
|
|
Loading…
Reference in a new issue