Skip to content
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

feat: use build-and-tag-action for creating dist #12

Merged
merged 4 commits into from
May 20, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: release-please-action
- uses: JasonEtco/build-and-tag-action@v1
with:
setup: 'npm ci && npm run build'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because of actions/toolkit#461, this won't work 😞 Instead, you'll need:

    - run: npm ci && npm run build
    - uses: JasonEtco/build-and-tag-action@v1
        with:
          setup: ''

You'll likely also need to use actions/checkout before being able to run those.

tag_name: ${{ steps.releaser.outputs.tag_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 0 additions & 2 deletions dist/commit.hbs

This file was deleted.

56 changes: 0 additions & 56 deletions dist/commit1.hbs

This file was deleted.

30 changes: 0 additions & 30 deletions dist/commit2.hbs

This file was deleted.

10 changes: 0 additions & 10 deletions dist/footer.hbs

This file was deleted.

Empty file removed dist/footer1.hbs
Empty file.
9 changes: 0 additions & 9 deletions dist/header.hbs

This file was deleted.

9 changes: 0 additions & 9 deletions dist/header1.hbs

This file was deleted.

13 changes: 0 additions & 13 deletions dist/header2.hbs

This file was deleted.

Loading