Skip to content

Commit

Permalink
Fix #11: Debugging releases
Browse files Browse the repository at this point in the history
  • Loading branch information
madhead committed Mar 27, 2021
1 parent b597dee commit 5d5db8b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 19 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/release.yml

This file was deleted.

12 changes: 9 additions & 3 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Tag
name: Release

on:
push:
branches:
- main

jobs:
tag:
name: Tag
release:
name: Release
runs-on: ubuntu-latest
env:
GIT_AUTHOR_NAME: madhead
Expand Down Expand Up @@ -40,3 +40,9 @@ jobs:
- run: git tag --force 'latest'

- run: git push --force --tags origin

- uses: softprops/action-gh-release@v1
with:
name: ${{ steps.parsedVersion.outputs.major }}.${{ steps.parsedVersion.outputs.minor }}.${{ steps.parsedVersion.outputs.patch }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semver-utils",
"version": "1.3.7",
"version": "1.3.8",
"private": true,
"description": "One-stop shop for working with semantic versions in your workflows",
"main": "lib/main.js",
Expand Down

0 comments on commit 5d5db8b

Please sign in to comment.