Site Deploy #433
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Site Deploy | |
on: | |
push: | |
branches: [assets] | |
workflow_run: | |
workflows: ["Scheduler"] | |
types: | |
- completed | |
permissions: | |
contents: read | |
deployments: write | |
statuses: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
name: Deploy assets | |
environment: netlify | |
concurrency: | |
group: website-deploy-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: assets | |
- name: Get Branch Name and SHA | |
run: | | |
echo "BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV | |
echo "HEAD_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV | |
- name: Deploy to Netlify | |
uses: nwtgck/actions-netlify@v3 | |
with: | |
publish-dir: "." | |
production-deploy: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
deploy-message: "Deploy ${{ env.BRANCH_NAME }}@${{ env.HEAD_SHA }}" | |
enable-commit-comment: false | |
alias: ${{ env.BRANCH_NAME }} | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} |