2022-07-11 02:39:21 +02:00
|
|
|
name: Extra
|
2022-07-11 16:14:17 +02:00
|
|
|
|
2022-07-11 02:39:21 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-07-11 16:14:17 +02:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
2022-07-11 02:39:21 +02:00
|
|
|
jobs:
|
2022-07-11 03:04:42 +02:00
|
|
|
# Need to have the same name as where this dependency is used,
|
|
|
|
# otherwise the cache key won't be the same.
|
|
|
|
release:
|
2022-07-11 17:07:40 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-07-11 16:14:17 +02:00
|
|
|
|
2022-07-11 02:39:21 +02:00
|
|
|
steps:
|
|
|
|
# build and cache this here in order to reuse it's cache in feature branches
|
|
|
|
- name: Install cargo-edit
|
|
|
|
uses: baptiste0928/cargo-install@v1
|
|
|
|
with:
|
|
|
|
crate: cargo-edit
|
|
|
|
version: 0.9.1
|