Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 1 addition & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@ jobs:
package-manager: yarn

- name: Create test tar
run: yarn run test-create-data

- uses: blacha/hyperfine-action@v1
run: yarn run test-create-data
6 changes: 5 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
environment:
name: prod
outputs:
releases_created: ${{ steps.release.outputs.releases_created }}
steps:
Expand All @@ -15,11 +17,13 @@ jobs:
with:
command: manifest
release-type: node
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.LI_GITHUB_ACTION_TOKEN }}

publish-release:
needs: release-please
runs-on: ubuntu-latest
environment:
name: prod
if: ${{ needs.release-please.outputs.releases_created }}
steps:
- name: Build and test
Expand Down