Created
May 30, 2022 09:10
-
-
Save dhruvasagar/db739431130fc077dab1d6be66b1543c to your computer and use it in GitHub Desktop.
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: Deploy Dev | |
on: | |
workflow_run: | |
workflows: ["CI"] | |
types: | |
- completed | |
branches: | |
- develop | |
job: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build ENV | |
run: echo "${{ secrets.BACKEND_ENV }}" | base64 -d > .env | |
- name: Deploy | |
run: ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment