Skip to content

Commit

Permalink
Merge pull request #3 from blmarquess/feature/release-workflow
Browse files Browse the repository at this point in the history
Releasi pipeline
  • Loading branch information
blmarquess authored Feb 13, 2024
2 parents 9bfbaee + 98a872c commit f1a7a56
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: Generate Release

on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'

- name: Install dependencies
run: npm install

- name: Bump version and create release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
draft: false
prerelease: false

0 comments on commit f1a7a56

Please sign in to comment.