build: add deploy branch to GitHub workflow #12
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
name: deploy | |
on: | |
push: | |
# Run deployment only on pushes to main, not other branches | |
branches: ["frischmuth/deploy"] | |
# Allows you to run this workflow manually from the Actions tab or through HTTP API | |
workflow_dispatch: | |
jobs: | |
deploy: | |
uses: acdh-oeaw/prosnet-workflows/.github/workflows/[email protected] | |
secrets: inherit |