Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/canary-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
cache: yarn
- name: Prepare git
run: |
git config --global user.name "Steven Serrata"
git config --global user.email "sserrata@paloaltonetworks.com"
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git fetch
git checkout main
echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" >> .npmrc
Expand Down
147 changes: 0 additions & 147 deletions .github/workflows/combine-dependabot-prs.yml

This file was deleted.

6 changes: 2 additions & 4 deletions .github/workflows/deploy-live.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
if: github.repository == 'PaloAltoNetworks/docusaurus-openapi-docs'
name: Build
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Checkout repository
Expand Down Expand Up @@ -59,9 +61,6 @@ jobs:
workload_identity_provider: ${{ secrets.WIF_PROVIDER }}
service_account: ${{ secrets.WIF_SERVICE_ACCOUNT }}

- name: Export Google Cloud Credentials
run: echo "GCP_SA_KEY=$(cat ${{ steps.auth.outputs.credentials_file_path }})" >> $GITHUB_ENV

- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
with:
name: build
Expand All @@ -74,7 +73,6 @@ jobs:
uses: FirebaseExtended/action-hosting-deploy@e2eda2e106cfa35cdbcf4ac9ddaf6c4756df2c8c # v0.10.0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ env.GCP_SA_KEY }}"
projectId: pandev
channelId: live
target: docusaurus-openapi.tryingpan.dev
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
cache: "yarn"

- name: Install dependencies
run: yarn --prefer-offline
run: yarn --prefer-offline --ignore-scripts

- name: Build packages
run: yarn build-packages
Expand Down Expand Up @@ -155,9 +155,6 @@ jobs:
workload_identity_provider: ${{ secrets.WIF_PROVIDER }}
service_account: ${{ secrets.WIF_SERVICE_ACCOUNT }}

- name: Export Google Cloud Credentials
run: echo "GCP_SA_KEY=$(cat ${{ steps.auth.outputs.credentials_file_path }})" >> $GITHUB_ENV

- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
with:
name: build
Expand All @@ -170,7 +167,6 @@ jobs:
uses: FirebaseExtended/action-hosting-deploy@e2eda2e106cfa35cdbcf4ac9ddaf6c4756df2c8c # v0.10.0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ env.GCP_SA_KEY }}"
projectId: pandev
expires: 30d
channelId: "pr${{ github.event.number }}"
Expand Down
Loading