Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
galaxyfeeder committed Aug 2, 2024
1 parent 61701fa commit 2efae4c
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -236,30 +236,30 @@ jobs:
# token: ${{ secrets.CODECOV_TOKEN }}

# check: # This job does nothing and is only used for the branch protection
if: always()
# if: always()

needs:
- lint
- test
# needs:
# - lint
# - test

runs-on: ubuntu-latest
# runs-on: ubuntu-latest

steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
# steps:
# - name: Decide whether the needed jobs succeeded or failed
# uses: re-actors/alls-green@release/v1
# with:
# jobs: ${{ toJSON(needs) }}

pre-deploy:
name: Pre-Deploy
runs-on: ubuntu-latest
needs: check
# Run only on pushing a tag
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- name: Dummy
run: |
echo "Predeploy step"
# pre-deploy:
# name: Pre-Deploy
# runs-on: ubuntu-latest
# needs: check
# # Run only on pushing a tag
# if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
# steps:
# - name: Dummy
# run: |
# echo "Predeploy step"

build-tarball:
name: Tarball
Expand Down

0 comments on commit 2efae4c

Please sign in to comment.