Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,15 @@ jobs:

echo "Pushed patch manifest: patch-${VERSION} (from ${PREV_VERSION})"

- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Notify Linear nightly release
uses: linear/linear-release-action@v0
with:
access_key: ${{ secrets.LINEAR_NIGHTLY_RELEASE_KEY }}
version: ${{ needs.changes.outputs.nightly-version }}

test-e2e:
name: E2E Tests
needs: [build-binary]
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,8 @@ jobs:
version: ${{ inputs.version }}
force: ${{ inputs.force }}
merge_target: ${{ inputs.merge_target }}
- name: Notify Linear release
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file should not have any linear related stuff. Remove. This is to initiate the release

if: success()
uses: linear/linear-release-action@v0
with:
access_key: ${{ secrets.LINEAR_STABLE_RELEASE_KEY }}
Loading