Replace sub crate release with full release

This commit is contained in:
Gwilym Kuiper 2022-07-03 18:26:00 +01:00
parent fe78d64aa5
commit e10b0de4f8
2 changed files with 3 additions and 22 deletions

View file

@ -18,9 +18,9 @@ jobs:
fetch-depth: 0
- name: Login to crates.io
run: cargo login ${{ secrets.CRATE_API }}
- name: Publish agb
run: cargo publish
working-directory: ./agb
- name: Publish crates
run: bash .github/scripts/publish-crate.sh
- name: Update template repo
env:

View file

@ -1,19 +0,0 @@
name: Publish sub crate
on:
push:
tags:
- "*/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@v3
- name: Login to crates.io
run: cargo login ${{ secrets.CRATE_API }}
- name: Publish crate
run: bash .github/scripts/publish-crate.sh