Skip to content

Instantly share code, notes, and snippets.

@dhruvasagar
Created May 30, 2022 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhruvasagar/db739431130fc077dab1d6be66b1543c to your computer and use it in GitHub Desktop.
Save dhruvasagar/db739431130fc077dab1d6be66b1543c to your computer and use it in GitHub Desktop.
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