- Add rustfmt file - Add .cargo file for fast compiles - use just commands and cleanup release workflows
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
name: Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
release:
|
|
if: github.repository == 'blue-build/cli'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: write
|
|
contents: write
|
|
packages: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
target/
|
|
~/.cargo/bin/
|
|
~/.cargo/git/db/
|
|
~/.cargo/registry/index/
|
|
~/.cargo/registry/cache/
|
|
key: ${{ runner.os }}-cargo-build-stable-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
- name: Install just
|
|
run: sudo snap install --edge --classic just
|
|
- name: Install cargo-release
|
|
run: cargo install cargo-release
|
|
|
|
- name: Git setup
|
|
run: |
|
|
git config user.name github-actions
|
|
git config user.email github-actions@github.com
|
|
|
|
- name: Setup release
|
|
run: just cargo-release --execute
|
|
|
|
- name: Create PR
|
|
uses: peter-evans/create-pull-request@v5
|
|
with:
|
|
delete-branch: true
|
|
base: "main"
|
|
title: "Preparing Next Release"
|
|
body: |
|
|
Preparing next release
|
|
This PR has been auto-generated
|