mirror of
https://github.com/mistricky/codesnap.nvim.git
synced 2024-12-26 19:36:29 +00:00
[Fix] remove the wait for action
This commit is contained in:
parent
cb4b02d7e0
commit
4cdf8b6970
2 changed files with 7 additions and 18 deletions
6
.github/workflows/build.yaml
vendored
6
.github/workflows/build.yaml
vendored
|
@ -1,11 +1,11 @@
|
|||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
push:
|
||||
paths:
|
||||
generator/**
|
||||
project.toml
|
||||
branches:
|
||||
- main
|
||||
- main
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
|
19
.github/workflows/release.yml
vendored
19
.github/workflows/release.yml
vendored
|
@ -1,11 +1,10 @@
|
|||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
project.toml
|
||||
branches:
|
||||
- main
|
||||
workflow_run:
|
||||
workflows: [build]
|
||||
types:
|
||||
- completed
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
@ -14,16 +13,6 @@ jobs:
|
|||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Wait for build workflow to succeed
|
||||
uses: lewagon/wait-on-check-action@v1.3.4
|
||||
with:
|
||||
ref: ${{ github.ref }}
|
||||
check-regexp: 'with rust'
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
wait-interval: 10
|
||||
allowed-conclusions: success,skipped,cancelled
|
||||
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue