mirror of
https://github.com/linear/linear-release.git
synced 2026-09-14 20:00:10 +08:00
b5db80a461
* Add skill to generate configuration * More improvements to skill + adjust README
23 lines
535 B
YAML
23 lines
535 B
YAML
# Linear Release — GitHub Actions (Continuous Pipeline)
|
|
#
|
|
# Use when: Every deployment creates a completed release automatically.
|
|
# Trigger: On every push to main.
|
|
# Customize: Branch name, path filters (include_paths input).
|
|
|
|
name: Linear Release
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
linear-release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: linear/linear-release-action@v0
|
|
with:
|
|
access_key: ${{ secrets.LINEAR_ACCESS_KEY }}
|