Compare commits

...

13 commits

Author SHA1 Message Date
12b9f7ac51
Merge pull request 'feat: Add npm token' (#9) from npm into main
All checks were successful
Release / Release (push) Successful in 35s
Reviewed-on: #9
2025-06-19 08:11:19 +00:00
a8ddce75a2
feat: Add npm token 2025-06-19 10:10:44 +02:00
ef7cc40f83 Update action.yml
All checks were successful
Release / Release (push) Successful in 50s
2025-04-09 11:42:19 +00:00
d017433bc1 Update action.yml
All checks were successful
Release / Release (push) Successful in 1m5s
2025-02-13 10:08:17 +00:00
e031e9b0e6 Update action.yml
All checks were successful
Release / Release (push) Successful in 47s
2025-02-13 07:31:36 +00:00
b4d1f9181a Update action.yml
All checks were successful
Release / Release (push) Successful in 57s
2025-02-13 06:52:16 +00:00
ac1ba7df2b Update action.yml
All checks were successful
Release / Release (push) Successful in 43s
2025-02-13 06:35:14 +00:00
a7c4051e98 Update action.yml
Some checks failed
Release / Release (push) Failing after 8s
2025-02-13 06:34:19 +00:00
050cd55e03 Update action.yml
Some checks failed
Release / Release (push) Failing after 8s
2025-02-13 06:33:11 +00:00
01ba711b20 Update action.yml
All checks were successful
Release / Release (push) Successful in 1m36s
2025-02-13 06:23:59 +00:00
7d190234a0 revert 73a5143f82
All checks were successful
Release / Release (push) Successful in 2m6s
revert Update action.yml
2025-02-12 21:08:39 +00:00
73a5143f82 Update action.yml
All checks were successful
Release / Release (push) Successful in 49s
2025-02-12 20:51:09 +00:00
ff18094bc3
ci: add branch filter for release workflow
All checks were successful
Release / Release (push) Successful in 35s
2024-08-26 14:33:53 +02:00
2 changed files with 14 additions and 4 deletions

View file

@ -1,6 +1,8 @@
name: Release
on:
push:
branches:
- main
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}

View file

@ -7,6 +7,10 @@ inputs:
GITEA_TOKEN:
description: "Gitea token"
required: true
NPM_TOKEN:
description: "NPM Publish token"
required: false
default: ""
runs:
using: "composite"
@ -20,12 +24,16 @@ runs:
with:
node-version: "lts/*"
- name: Install dependencies
run: npm install semantic-release @saithodev/semantic-release-gitea @semantic-release/changelog
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
run: npm install semantic-release @saithodev/semantic-release-gitea @semantic-release/changelog @semantic-release/release-notes-generator commitlint-plugin-cleanfeet conventional-changelog-conventionalcommits @semantic-release/git
- name: Release
env:
GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }}
GITEA_TOKEN: ${{ inputs.GITEA_TOKEN }}
run: npx semantic-release
NPM_TOKEN: ${{ inputs.NPM_TOKEN }}
uses: cycjimmy/semantic-release-action@v4
id: semantic
outputs:
new_release_published:
description: "The output from the action"
value: ${{ steps.semantic.outputs.new_release_published }}