Skip to content

Commit

Permalink
Merge pull request #5543 from ietf-tools/main
Browse files Browse the repository at this point in the history
ci: new release (hopefully?)
  • Loading branch information
NGPixel authored Apr 26, 2023
2 parents 69bc878 + 180663e commit bef11af
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
# -----------------------------------------------------------------
tests-python:
name: Run Tests (Python)
if: ${{ github.event.inputs.skiptests == 'false' }}
if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }}
needs: [prepare]
runs-on: ubuntu-latest
container: ghcr.io/ietf-tools/datatracker-app-base:latest
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:

tests-playwright:
name: Run Tests (Playwright)
if: ${{ github.event.inputs.skiptests == 'false' }}
if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }}
needs: [prepare]
runs-on: macos-latest
strategy:
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:

tests-playwright-legacy:
name: Run Tests (Playwright Legacy)
if: ${{ github.event.inputs.skiptests == 'false' }}
if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }}
needs: [prepare]
runs-on: ubuntu-latest
container: ghcr.io/ietf-tools/datatracker-app-base:latest
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
python-version: '3.x'

- name: Download a Coverage Results
if: ${{ github.event.inputs.skiptests == 'false' }}
if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }}
uses: actions/download-artifact@v3.0.2
with:
name: coverage
Expand Down Expand Up @@ -328,14 +328,14 @@ jobs:
writeToFile: false

- name: Prepare Coverage Action
if: ${{ github.event.inputs.skiptests == 'false' }}
if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }}
working-directory: ./dev/coverage-action
run: npm install

- name: Process Coverage Stats + Chart
id: covprocess
uses: ./dev/coverage-action/
if: ${{ github.event.inputs.skiptests == 'false' }}
if: ${{ github.event.inputs.skiptests == 'false' || github.ref_name == 'release' }}
with:
token: ${{ github.token }}
tokenCommon: ${{ secrets.GH_COMMON_TOKEN }}
Expand Down

0 comments on commit bef11af

Please sign in to comment.