serve html directly, no parsing #18
This file contains hidden or 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 Scratch | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| tag: | |
| type: string | |
| required: false | |
| default: master | |
| description: Enter the tag to deploy | |
| push: | |
| branches: | |
| - 'master' | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| name: "Deploy scratch to live" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event.inputs.tag }} | |
| - id: deploy | |
| name: Deploy | |
| run: | |
| ./.github/helpers/deploy.sh arthyn/scratch scratch urbit/dister-nocsyx-lassul ${{ github.event.inputs.tag }} | |
| env: | |
| SSH_SEC_KEY: ${{ secrets.SSH_SEC_KEY }} | |
| SSH_PUB_KEY: ${{ secrets.SSH_PUB_KEY }} | |
| URBIT_REPO_TAG: ${{ vars.URBIT_REPO_TAG }} |