change street art festival name to tag #903
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: Vercel Deploy | |
on: [push] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract branch name | |
id: extract_branch | |
run: | | |
branch_name=${GITHUB_REF#refs/heads/} | |
branch_formatted=${branch_name//\//-} | |
echo $branch_name | |
echo $branch_formatted | |
echo ::set-output name=branch::$branch_formatted | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Deploy to Staging | |
id: deploy-vercel-staging | |
uses: amondnet/vercel-action@v20 | |
if: github.ref != 'refs/heads/main' | |
with: | |
vercel-token: ${{secrets.VERCEL_TOKEN}} | |
github-token: ${{secrets.VERCEL_GITHUB_TOKEN}} | |
vercel-org-id: ${{secrets.VERCEL_ORG_ID}} | |
vercel-project-id: ${{secrets.VERCEL_PROJECT_ID}} | |
alias-domains: >- | |
${{ format( | |
'{0}-{1}.vercel.app', | |
secrets.VERCEL_DOMAIN, | |
steps.extract_branch.outputs.branch) | |
}} | |
- name: Deploy to Production | |
id: deploy-vercel-production | |
uses: amondnet/vercel-action@v20 | |
if: github.ref == 'refs/heads/main' | |
with: | |
vercel-token: ${{secrets.VERCEL_TOKEN}} | |
vercel-org-id: ${{secrets.VERCEL_ORG_ID}} | |
vercel-project-id: ${{secrets.VERCEL_PROJECT_ID}} | |
vercel-args: '--prod' |