Skip to content

Commit

Permalink
Remove deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
hwoodiwiss authored Oct 27, 2023
1 parent 168ecfa commit 7108b5e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build-deploy-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
artifact-name: "webapp-build"
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')

deploy:
needs: [build]
uses: ./.github/workflows/deploy.yml
with:
artifact-name: "webapp-build"
secrets:
swa-api-token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AGREEABLE_DUNE_08FACD403 }}
gh-token: ${{ secrets.GITHUB_TOKEN }}
if: |
(github.event_name == 'push'
|| (github.event_name == 'pull_request' && github.event.action != 'closed'))
&& github.actor != 'dependabot[bot]'
# deploy:
# needs: [build]
# uses: ./.github/workflows/deploy.yml
# with:
# artifact-name: "webapp-build"
# secrets:
# swa-api-token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AGREEABLE_DUNE_08FACD403 }}
# gh-token: ${{ secrets.GITHUB_TOKEN }}
# if: |
# (github.event_name == 'push'
# || (github.event_name == 'pull_request' && github.event.action != 'closed'))
# && github.actor != 'dependabot[bot]'
24 changes: 12 additions & 12 deletions .github/workflows/build-deploy-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
artifact-name: "webapp-build"
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')

deploy:
needs: ["build"]
uses: ./.github/workflows/deploy.yml
with:
artifact-name: "webapp-build"
secrets:
swa-api-token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_VICTORIOUS_GRASS_0945F1903 }}
gh-token: ${{ secrets.GITHUB_TOKEN }}
if: |
(github.event_name == 'push'
|| (github.event_name == 'pull_request' && github.event.action != 'closed'))
&& github.actor != 'dependabot[bot]'
# deploy:
# needs: ["build"]
# uses: ./.github/workflows/deploy.yml
# with:
# artifact-name: "webapp-build"
# secrets:
# swa-api-token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_VICTORIOUS_GRASS_0945F1903 }}
# gh-token: ${{ secrets.GITHUB_TOKEN }}
# if: |
# (github.event_name == 'push'
# || (github.event_name == 'pull_request' && github.event.action != 'closed'))
# && github.actor != 'dependabot[bot]'

0 comments on commit 7108b5e

Please sign in to comment.