Files
loot-condition-interpreter/.github/workflows/release.yml
T
Oliver Hamlet bd10075c72 Pin third-party Action versions
The versions that are installed have not changed: the hashes correspond to the current values of the version tags that were previously used.
2025-10-01 20:08:54 +01:00

25 lines
435 B
YAML

name: Publish to crates.io
on:
push:
tags: ['*.*.*']
jobs:
publish:
runs-on: ubuntu-24.04
environment: release
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: rust-lang/crates-io-auth-action@e919bc7605cde86df457cf5b93c5e103838bd879 # v1.0.1
id: auth
- run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}