diff --git a/.github/workflows/draft-new-release.yml b/.github/workflows/draft-new-release.yml index 203425b..3cfdbaf 100644 --- a/.github/workflows/draft-new-release.yml +++ b/.github/workflows/draft-new-release.yml @@ -53,7 +53,7 @@ jobs: with: GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} head: release/${{ github.event.inputs.version }} - base: master + base: main title: Release version ${{ github.event.inputs.version }} reviewers: ${{ github.actor }} body: | diff --git a/.github/workflows/release-to-crates-io.yml b/.github/workflows/release-to-crates-io.yml index 2c725ca..d2547ea 100644 --- a/.github/workflows/release-to-crates-io.yml +++ b/.github/workflows/release-to-crates-io.yml @@ -13,6 +13,6 @@ jobs: with: ref: ${{ github.event.release.target_commitish }} - - run: cargo publish --dry-run + - run: cargo publish env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}