diff --git a/.github/workflows/lint-js.yml b/.github/workflows/lint-js.yml index f6ae5d5..6bd1f68 100644 --- a/.github/workflows/lint-js.yml +++ b/.github/workflows/lint-js.yml @@ -6,6 +6,8 @@ on: push: branches: - main + tags: + - "v*" pull_request: paths-ignore: - "src-tauri/**" diff --git a/.github/workflows/lint-rs.yml b/.github/workflows/lint-rs.yml index e625159..8b6e82a 100644 --- a/.github/workflows/lint-rs.yml +++ b/.github/workflows/lint-rs.yml @@ -6,6 +6,8 @@ on: push: branches: - main + tags: + - "v*" pull_request: paths-ignore: - "src/**" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 365bf37..1fe6c50 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,28 +10,7 @@ env: TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }} jobs: - # Wait for linting jobs to complete first - wait-for-linting: - runs-on: ubuntu-latest - steps: - - name: Wait for Rust linting to complete - uses: lewagon/wait-on-check-action@v1.3.4 - with: - ref: ${{ github.ref }} - check-name: "Lint Rust" - repo-token: ${{ secrets.GITHUB_TOKEN }} - wait-interval: 10 - - - name: Wait for JavaScript linting to complete - uses: lewagon/wait-on-check-action@v1.3.4 - with: - ref: ${{ github.ref }} - check-name: "Lint Node.js" - repo-token: ${{ secrets.GITHUB_TOKEN }} - wait-interval: 10 - release: - needs: wait-for-linting permissions: contents: write strategy: