diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 3c7c2b1..9a4fc85 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -1,4 +1,4 @@ -name: Build and run tests Windows +name: Build on Windows on: push: diff --git a/.github/workflows/rust-publish-to-crates-io.yml b/.github/workflows/rust-publish-to-crates-io.yml new file mode 100644 index 0000000..3523cff --- /dev/null +++ b/.github/workflows/rust-publish-to-crates-io.yml @@ -0,0 +1,31 @@ +name: Rust publish to crates.io + +on: + workflow_dispatch: + inputs: + version: + description: 'Version to publish Rust under (e.g. `1.2.3-dev.1`)' + required: true + branch: + description: 'Branch to run publish from' + required: true + dry-run: + description: 'Run in dry-run mode' + type: boolean + required: false + default: true + +jobs: + publish-rust: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + ref: ${{ github.event.inputs.branch }} + - name: Publish to crates.io + uses: './.github/actions/publish/publish-rust' + with: + version: ${{ github.event.inputs.version }} + crates-token: ${{ secrets.CRATES_IO_TOKEN }} + dry-run: ${{ github.event.inputs.dry-run }}