Implement TAS DevX #1
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: Push to release branch | |
on: | |
push: | |
branches: master | |
jobs: | |
lua: | |
uses: "./.github/workflows/lua.yml" | |
deploy: | |
runs-on: ubuntu:latest | |
needs: [lua] | |
environment: production | |
concurrency: production | |
steps: | |
# TODO: Upgrade this to v2 deployment when bundling added | |
- name: Post to webhook | |
run: curl --fail-with-body -X POST ${{ secrets.DEPLOYER_WEBHOOK }}/${{ github.event.repository.name }} |