Skip to content

Commit

Permalink
Merge branch 'add-tauri' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Amerlander committed Dec 13, 2023
2 parents b30a1d5 + b98eb37 commit 52bc8c1
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/tauri.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release Tauri App
name: Publish static releases
on:
push:
tags:
Expand Down Expand Up @@ -48,6 +48,28 @@ jobs:
package-lock.json
retention-days: 1


deploy:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: Deploy to Cloudflare Pages
steps:

- name: Download all workflow run artifacts
uses: actions/download-artifact@v3

- name: Publish
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: pxt-calliope
directory: built/packaged
gitHubToken: ${{ secrets.GITHUB_TOKEN }}

release:
needs: build
permissions:
Expand Down

0 comments on commit 52bc8c1

Please sign in to comment.