Fixes Deploy Dispatcher

This commit is contained in:
2023-10-24 21:18:41 -03:00
parent e7b1040799
commit f989fac5da
2 changed files with 8 additions and 4 deletions

View File

@@ -12,9 +12,11 @@ jobs:
name: Build
environment: prod
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: main
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:

View File

@@ -12,9 +12,11 @@ jobs:
name: Build
environment: staging
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/staging'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: staging
- name: Set up Python 3.8
uses: actions/setup-python@v3
with: