Explicitly call out what to do on the end of the compressed input #31
Workflow file for this run
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: Build | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 2 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.11" | |
| - run: pip install bikeshed && bikeshed update | |
| # Note: `make deploy` will do a deploy dry run on PRs. | |
| - run: make deploy | |
| env: | |
| SERVER: ${{ secrets.MARQUEE_SERVER }} | |
| SERVER_PUBLIC_KEY: ${{ secrets.MARQUEE_PUBLIC_KEY }} | |
| SERVER_DEPLOY_KEY: ${{ secrets.MARQUEE_DEPLOY_KEY }} |