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

20 lines
543 B
YAML
Raw Normal View History

2021-06-21 08:44:40 +10:00
name: Publish agb-image-converter
2021-06-21 07:58:54 +10:00
on:
push:
tags:
- agb-image-converter/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 -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-image-converter
run: cargo publish
working-directory: ./agb-image-converter