Bug workaround: workers fail to properly account for docker images cl… #91
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
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions | |
name: Deno deploy api+browser | |
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
deno-deploy-api-browser: | |
# Can switch to ubuntu-latest but self-hosted is safer and faster | |
name: Deno deploy api+browser | |
runs-on: self-hosted | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
- name: deno deploy api+browser | |
env: | |
DENO_DEPLOY_TOKEN: ${{ secrets.DENO_DEPLOY_TOKEN }} | |
run: just app/api/deploy | |