Skip to content

Commit

Permalink
fix: empty commit for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Forattini committed Jul 7, 2022
1 parent 0311ed6 commit 7c3238c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
#--------------------------------------------------#
Setup:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.head_ref, 'env/') }}

outputs:
PipelineConfig: ${{ steps.script_setup.outputs.result }}
Expand Down Expand Up @@ -115,7 +114,6 @@ jobs:
#--------------------------------------------------#
Static-Analysis:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.head_ref, 'env/') }}
needs: Setup

permissions:
Expand Down Expand Up @@ -181,7 +179,6 @@ jobs:
#--------------------------------------------------#
Release:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.head_ref, 'env/') }}

needs:
- Setup
Expand Down Expand Up @@ -291,8 +288,9 @@ jobs:
run: |
git fetch
git checkout -b env/dev
git branch --set-upstream-to=origin/env/dev env/dev
git pull
git commit --allow-empty -am "deploy: c-${{github.sha}} to env-dev"
git commit --allow-empty -am "deploy: cmt-${{github.sha}} to env-dev"
git push -f origin env/dev
Expand All @@ -302,6 +300,7 @@ jobs:
Build:
runs-on: ubuntu-latest
if: ${{ startsWith(github.head_ref, 'env/') }}
environment: dev

needs:
- Setup
Expand Down

0 comments on commit 7c3238c

Please sign in to comment.