Skip to content

Commit

Permalink
ci: remove manual release trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-mader committed Nov 19, 2024
1 parent bae282b commit a10f6ae
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Release

on:
workflow_dispatch:
push:
branches:
- main
Expand All @@ -14,7 +13,6 @@ permissions:

jobs:
release:
name: release
runs-on: ubuntu-latest

permissions:
Expand All @@ -23,15 +21,15 @@ jobs:
pull-requests: write # to be able to comment on released pull requests

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "lts/*"

- name: Release
- name: semantic-release
run: npx semantic-release@24
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a10f6ae

Please sign in to comment.