From 04e228ed7d8356c7dc058248051f5155d2f03058 Mon Sep 17 00:00:00 2001 From: Tom Harding Date: Mon, 26 Aug 2024 11:58:29 +0200 Subject: [PATCH] Make it so --- .github/workflows/deploy.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/deploy.yaml diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 00000000..45f6a484 --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,21 @@ +on: + workflow_dispatch: + inputs: + new_version: + description: "What we want the new version to be" + required: true + +name: Deploy process + +jobs: + deploy: + name: cargo audit + runs-on: ubuntu-latest + env: + CARGO_NET_GIT_FETCH_WITH_CLI: "true" + steps: + - uses: actions/checkout@v4 + + - run: ./scripts/new-version.sh ${{ github.event.inputs.new_version }} + + - run: cat Cargo.toml