Skip to content

Commit

Permalink
Added back release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Jul 27, 2023
1 parent 97f9959 commit 613e9c4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,40 @@ on:
types: [published]

jobs:
publish:
name: publish
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Install cargo-workspaces
uses: actions-rs/install@v0.1
with:
crate: cargo-workspaces
- name: Release
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
PATCH: ${{ github.run_number }}
shell: bash
run: |
git config --global user.email "runner@gha.local"
git config --global user.name "Github Action"
cargo workspaces publish \
--from-git \
--yes \
--no-git-commit \
skip
doc-publish:
needs: publish
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
Expand Down

0 comments on commit 613e9c4

Please sign in to comment.