deployment action #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To change the workflow trigger from both push and workflow_dispatch to manual-only, you can modify your workflow as follows: | ||
yaml | ||
name: Shuttle Deploy | ||
on: | ||
workflow_dispatch: | ||
# Manual | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: shuttle-hq/deploy-action@main | ||
with: | ||
deploy-key: ${{ secrets.SHUTTLE_API_KEY }} |