Merge pull request #56 from HideyoshiNakazone/fixes-deploy-dispatcher

Fixes Deploy Dispatcher
This commit is contained in:
2023-10-24 21:19:28 -03:00
committed by GitHub
2 changed files with 8 additions and 4 deletions

View File

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

View File

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