Skip to content

Commit

Permalink
Merge pull request #8 from kbknapp/ci-releases
Browse files Browse the repository at this point in the history
Fix Nightly Release CI
  • Loading branch information
kbknapp authored Mar 29, 2024
2 parents eec0877 + ad0fade commit 7b4f40d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
---
on: [push, pull_request]
on:
push:
branches: main
pull_request:
paths:
- src/**
- Cargo.toml
- Cargo.lock
- build.rs

name: Continuous Integration

Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
---
on: pull_request
on:
pull_request:
paths:
- src/**/*.rs
- build.rs

name: PR Lints
jobs:
lints:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
on:
push:
branches: main
workflow_call:

name: Nightly Release

Expand Down Expand Up @@ -58,7 +59,7 @@ jobs:
SHA: ${{ steps.short-sha.outputs.sha }}

- name: Remove previous Nightly Release
uses: dev-drprasad/delete-tag-and-release@v0.2.0
uses: dev-drprasad/delete-tag-and-release@v1.0.1
with:
delete_release: true
tag_name: nightly
Expand Down

0 comments on commit 7b4f40d

Please sign in to comment.