ci: Remove wait job

This commit is contained in:
Ethan P 2023-06-15 17:11:46 -07:00
parent 03549d651a
commit ceaac1b917
No known key found for this signature in database
GPG Key ID: B29B90B1B228FEBC

View File

@ -5,21 +5,8 @@ on:
tags: ['*'] tags: ['*']
jobs: jobs:
"Wait":
runs-on: ubuntu-latest
steps:
- name: Wait for tests to succeed
uses: lewagon/wait-on-check-action@v1.0.0
if: ${{ !env.ACT }}
with:
ref: ${{ github.ref }}
running-workflow-name: 'Test'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10
"Release": "Release":
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: ["Wait"]
steps: steps:
- name: Check out sources - name: Check out sources
uses: actions/checkout@v3 uses: actions/checkout@v3
@ -27,14 +14,14 @@ jobs:
uses: ./.github/actions/install-dependencies uses: ./.github/actions/install-dependencies
with: with:
build: true build: true
test: false test: true
- name: Build - name: Build
uses: ./.github/actions/build uses: ./.github/actions/build
with: with:
minify: lib minify: lib
manuals: true manuals: true
verify: false verify: true
inline: false inline: false
- name: Create zipball - name: Create zipball