Skip to content

Commit

Permalink
chore: release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Apr 20, 2024
1 parent b5d358e commit 23c7ae9
Show file tree
Hide file tree
Showing 7 changed files with 719 additions and 89 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/release-plz.yml

This file was deleted.

10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ permissions:
on:
push:
tags:
- '**[0-9]+.[0-9]+.[0-9]+*'
- "**[0-9]+.[0-9]+.[0-9]+*"
pull_request:

jobs:
Expand Down Expand Up @@ -69,6 +69,8 @@ jobs:
# (PRs run on the *source* but secrets are usually on the *target* -- that's *good*
# but also really annoying to build CI around when it needs secrets to work right.)
- id: plan
env:
RUSTFLAGS: "--cfg tokio_unstable"
run: |
cargo dist ${{ (!github.event.pull_request && format('host --steps=create --tag={0}', github.ref_name)) || 'plan' }} --output-format=json > plan-dist-manifest.json
echo "cargo dist ran successfully"
Expand Down Expand Up @@ -122,6 +124,8 @@ jobs:
run: |
${{ matrix.packages_install }}
- name: Build artifacts
env:
RUSTFLAGS: "--cfg tokio_unstable"
run: |
# Actually do builds and make zips and whatnot
cargo dist build ${{ needs.plan.outputs.tag-flag }} --print=linkage --output-format=json ${{ matrix.dist_args }} > dist-manifest.json
Expand Down Expand Up @@ -172,6 +176,8 @@ jobs:
merge-multiple: true
- id: cargo-dist
shell: bash
env:
RUSTFLAGS: "--cfg tokio_unstable"
run: |
cargo dist build ${{ needs.plan.outputs.tag-flag }} --output-format=json "--artifacts=global" > dist-manifest.json
echo "cargo dist ran successfully"
Expand Down Expand Up @@ -218,6 +224,8 @@ jobs:
# This is a harmless no-op for Github Releases, hosting for that happens in "announce"
- id: host
shell: bash
env:
RUSTFLAGS: "--cfg tokio_unstable"
run: |
cargo dist host ${{ needs.plan.outputs.tag-flag }} --steps=upload --steps=release --output-format=json > dist-manifest.json
echo "artifacts uploaded and released successfully"
Expand Down
Loading

0 comments on commit 23c7ae9

Please sign in to comment.