Skip to content

Commit

Permalink
build: adding release action (#877)
Browse files Browse the repository at this point in the history
  • Loading branch information
manchuck authored Oct 19, 2023
1 parent 245ae29 commit d069e28
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release Action

on:
release:
types: [published]

jobs:
test-action:
runs-on: ubuntu-latest
name: Update Release

steps:
- name: Checkout
id: checkout
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Update RELEASES.MD
uses: manchuck/[email protected]

- name: Debug
run: cat RELEASES.md

- name: Commit relase Log
uses: EndBug/add-and-commit@v9
with:
add: RELEASES.md
message: 'chore: updating release log'

0 comments on commit d069e28

Please sign in to comment.