From 39bb8518979986f2298b295ef2df1405df9ac488 Mon Sep 17 00:00:00 2001 From: Diversable Date: Wed, 13 Dec 2023 12:30:39 -0800 Subject: [PATCH] document gh action scripts --- .github/workflows/spin_deploy.yml | 6 ++++++ .github/workflows/spin_preview.yml | 6 ++++++ .gitignore | 3 ++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/spin_deploy.yml b/.github/workflows/spin_deploy.yml index 46dfafc..bf18155 100644 --- a/.github/workflows/spin_deploy.yml +++ b/.github/workflows/spin_deploy.yml @@ -77,6 +77,12 @@ jobs: uses: fermyon/actions/spin/deploy@v1 with: fermyon_token: ${{ secrets.FERMYON_CLOUD_TOKEN }} + # key_values: |- + # abc=xyz + # foo=bar + # variables: |- + # password=${{ secrets.SECURE_PASSWORD }} + # apikey=${{ secrets.API_KEY }} # Create an explicit message to display the URL of the deployed app, as well as in the job graph - name: Deployed URL diff --git a/.github/workflows/spin_preview.yml b/.github/workflows/spin_preview.yml index 5442ce5..474b66b 100644 --- a/.github/workflows/spin_preview.yml +++ b/.github/workflows/spin_preview.yml @@ -82,6 +82,12 @@ jobs: fermyon_token: ${{ secrets.FERMYON_CLOUD_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }} undeploy: ${{ github.event.pull_request && github.event.action == 'closed' }} + # key_values: |- + # abc=xyz + # foo=bar + # variables: |- + # password=${{ secrets.SECURE_PASSWORD }} + # apikey=${{ secrets.API_KEY }} - name: Display Deployed URL diff --git a/.gitignore b/.gitignore index 09c221c..105c20b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .spin/ -target/ \ No newline at end of file +target/ +dist/ \ No newline at end of file