fix storage identifier not changing between deployments #307
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: | |
branches: dev | |
pull_request: | |
branches: [dev, main] | |
types: [opened, synchronize, reopened] | |
jobs: | |
deploy: | |
name: deploy on deno-deploy | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # Needed for auth with Deno Deploy | |
contents: read # Needed to clone the repository | |
env: | |
CI: true | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: install latest deno | |
uses: denoland/setup-deno@v1 | |
- name: run build | |
run: deno task build | |
working-directory: ./doc | |
env: | |
UPSTASH_URL: ${{ secrets.UPSTASH_URL }} | |
UPSTASH_TOKEN: ${{ secrets.UPSTASH_TOKEN }} | |
CRYPTO_KEY: ${{ secrets.CRYPTO_KEY }} | |
- name: Upload to Deno Deploy | |
uses: denoland/deployctl@v1 | |
with: | |
project: frugal | |
entrypoint: doc/dist/deno/entrypoint.mjs | |
import-map: doc/import_map.json | |