format variant with optional brackets around the sum (#2048) #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Publication of the `main` branch. | |
# | |
# Commits to `main` go through the merge queue first to produce artifacts and | |
# test results. If a special commit marker is found then a publish is made. | |
name: Publish Artifacts | |
on: | |
push: | |
branches: [main] | |
permissions: | |
contents: write | |
jobs: | |
create_tag: | |
name: Publish artifacts of build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- uses: ./.github/actions/publish-release | |
with: | |
cargo_token: ${{ secrets.CARGO_REGISTRY_TOKEN }} |