diff --git a/.github/workflows/linear-release.yml b/.github/workflows/linear-release.yml new file mode 100644 index 0000000..2ac7276 --- /dev/null +++ b/.github/workflows/linear-release.yml @@ -0,0 +1,23 @@ +name: Linear Release + +on: + push: + tags: ['v*.*.*'] + +permissions: + contents: read + +jobs: + linear-release: + name: Create Linear release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v6 + with: + fetch-depth: 0 + + - name: Create Linear release + uses: linear/linear-release-action@v0 + with: + access_key: ${{ secrets.LINEAR_ACCESS_KEY }}