ci: `main => master` branch refs correction for `uses`

This commit is contained in:
Brennan Kinney 2024-11-18 09:08:43 +13:00 committed by GitHub
parent a0445bbe7c
commit 202c0102fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ jobs:
# CAUTION: This runs a build script which the PR could modify for malicious purposes. # CAUTION: This runs a build script which the PR could modify for malicious purposes.
prepare: prepare:
needs: [create-context] needs: [create-context]
uses: docker-mailserver/docker-mailserver/.github/workflows/docs-preview-prepare.yml@main uses: docker-mailserver/docker-mailserver/.github/workflows/docs-preview-prepare.yml@master
with: with:
preview-context: ${{ needs.create-context.outputs.preview-context }} preview-context: ${{ needs.create-context.outputs.preview-context }}
@ -81,7 +81,7 @@ jobs:
# CAUTION: Do not execute any content from untrusted sources (the PR branch or the retrieved artifact from the `prepare` job) # CAUTION: Do not execute any content from untrusted sources (the PR branch or the retrieved artifact from the `prepare` job)
deploy: deploy:
needs: [create-context, prepare] needs: [create-context, prepare]
uses: docker-mailserver/docker-mailserver/.github/workflows/docs-preview-deploy.yml@main uses: docker-mailserver/docker-mailserver/.github/workflows/docs-preview-deploy.yml@master
secrets: secrets:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}