-
-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Compile dependencies #77
Conversation
@@ -14,6 +14,8 @@ jobs: | |||
- uses: actions/setup-node@v1 | |||
with: | |||
node-version: 12 | |||
- run: yarn install | |||
- run: yarn build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the current branch we have to build the action as it's referenced with dist/index.js
.
@@ -12,6 +12,8 @@ jobs: | |||
- uses: actions/setup-node@v1 | |||
with: | |||
node-version: 12 | |||
- run: yarn install | |||
- run: yarn build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also for release a build is necessary. semantic-release should commit and push the artefacts to master.
@@ -3,7 +3,7 @@ author: Jan Amann <jan@amann.me> | |||
description: Ensure your PR title matches the Conventional Commits spec (https://www.conventionalcommits.org/). | |||
runs: | |||
using: 'node12' | |||
main: 'index.js' | |||
main: 'dist/index.js' | |||
branding: | |||
icon: 'shield' | |||
color: 'green' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Below here are only deleted node_modules.
No description provided.