Skip to content

Commit

Permalink
ci: use semantic-release
Browse files Browse the repository at this point in the history
  • Loading branch information
lsndr committed Dec 25, 2023
1 parent 88db09b commit 75b508f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
20 changes: 3 additions & 17 deletions .github/workflows/CI.yml → .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,10 @@
name: CI
name: "Build & Test"
env:
DEBUG: napi:*
APP_NAME: rrule-rust
MACOSX_DEPLOYMENT_TARGET: '10.13'
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
'on':
push:
branches:
- master
tags-ignore:
- '**'
paths-ignore:
- '**/*.md'
- LICENSE
- '**/*.gitignore'
- .editorconfig
- docs/**
pull_request: null
on:
workflow_call:
jobs:
build:
strategy:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: "Build & Test"
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
on:
pull_request: null
jobs:
build_and_test:
uses: ./.github/workflows/build-and-test.yml

0 comments on commit 75b508f

Please sign in to comment.