Skip to content

Commit

Permalink
ci: updates workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
dresende committed Feb 6, 2024
1 parent 0640576 commit dddaefa
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Continuous Integration
name: CI

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cov.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Code Coverage
name: Coverage

on:
push:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release

on:
push:
tags:
- \d+.\d+.\d+

jobs:
release_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate GitHub Release
uses: lsegal/github-release-from-changelog-action@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
INPUT_TITLE: $tag

0 comments on commit dddaefa

Please sign in to comment.