Skip to content

Commit

Permalink
fix(workflows/deploy-all-domains): fix missing runs-on & steps fo…
Browse files Browse the repository at this point in the history
…r job deploy-all
  • Loading branch information
IepIweidieng committed May 10, 2024
1 parent e3388be commit 644c4c3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/deploy-all-domains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- cron: "15 21 * * Wed,Sun"
jobs:
deploy-all:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand All @@ -26,7 +27,8 @@ jobs:
deploy-branch: main
secrets-id:
deploy-token: PTTCHROME_TOKEN
uses: ./.github/workflows/deploy-ghpage.yml
with: ${{ matrix.inputs }}
secrets:
deploy-token: ${{ secrets[matrix.secrets-id.deploy-token] }}
steps:
- uses: ./.github/workflows/deploy-ghpage.yml
with: ${{ matrix.inputs }}
secrets:
deploy-token: ${{ secrets[matrix.secrets-id.deploy-token] }}

0 comments on commit 644c4c3

Please sign in to comment.