Skip to content

Commit

Permalink
0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
a-tokyo committed Feb 9, 2023
1 parent 927cf14 commit df25104
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,17 @@ jobs:
# tag: ${{ steps.ownEnvVars.outputs.PACKAGE_VERSION }}
# commit: main
# body: ${{ steps.ownEnvVars.outputs.COMMIT_LOG }}
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.ownEnvVars.outputs.PACKAGE_VERSION }}
release_name: ${{ steps.ownEnvVars.outputs.PACKAGE_VERSION }}
body: ${{ steps.ownEnvVars.outputs.COMMIT_LOG }}
draft: false
prerelease: false
- name: npm publish
run: npm publish
env:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stylelint-rem-over-px",
"version": "0.0.3",
"version": "0.0.4",
"description": "A stylelint rule to enforce the usage of rem units over px units.",
"main": "index.js",
"files": [
Expand Down

0 comments on commit df25104

Please sign in to comment.