Skip to content

Commit

Permalink
Make it so
Browse files Browse the repository at this point in the history
  • Loading branch information
i-am-tom committed Aug 26, 2024
1 parent f9b942b commit 04e228e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 04e228e

Please sign in to comment.