Skip to content

Commit

Permalink
fix(ci): run on v2 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Sep 17, 2024
1 parent 76038b8 commit 451c90a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 19 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: Audit

on:
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"
push:
branches:
- main
- v2
paths:
- "**/Cargo.lock"
- "**/Cargo.toml"
pull_request:
branches:
- main
- v2
paths:
- "**/Cargo.lock"
- "**/Cargo.toml"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/covector-version-or-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: covector version or publish
on:
push:
branches:
- dev
- v2

jobs:
covector:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
if: steps.covector.outputs.commandRan == 'version'
uses: tauri-apps/create-pull-request@v3
with:
title: "Publish New Versions"
title: "Publish New Versions (v2)"
labels: "version updates"
branch: "release"
branch: "release-v2"
body: ${{ steps.covector.outputs.change }}
5 changes: 2 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ name: Format
on:
push:
branches:
- main
- v2
pull_request:
branches:
- main
- dev
- v2

jobs:
format:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ name: Clippy
on:
push:
branches:
- main
- v2
pull_request:
branches:
- main
- dev
- v2

jobs:
clippy:
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,20 @@ name: Test
on:
push:
branches:
- main
- v2
pull_request:
branches:
- main
- dev
- v2
paths-ignore:
- 'webview-src/**'
- 'webview-dist/**'
- 'examples/**'
- "examples/**"

jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 451c90a

Please sign in to comment.