Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
chancancode committed Sep 19, 2023
1 parent f07c92c commit f1418ac
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion files/.github/workflows/push-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
cache: '<%= yarn ? 'yarn' : 'npm' %>'<% } if (yarn || npm) { %>
- name: Install Dependencies
run: <%= yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %><%}%>
- uses: kategengler/put-built-npm-package-contents-on-branch@v1.0.0
- uses: kategengler/put-built-npm-package-contents-on-branch@v2.0.0
with:
branch: dist
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions tests/fixtures/default/.github/workflows/push-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
cache: 'npm'
- name: Install Dependencies
run: npm ci
- uses: kategengler/put-built-npm-package-contents-on-branch@v1.0.0
- uses: kategengler/put-built-npm-package-contents-on-branch@v2.0.0
with:
branch: dist
token: ${{ secrets.GITHUB_TOKEN }}
working-directory: my-addon
working-directory: my-addon
2 changes: 1 addition & 1 deletion tests/fixtures/pnpm/.github/workflows/push-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: NullVoxPopuli/action-setup-pnpm@v2
- uses: kategengler/put-built-npm-package-contents-on-branch@v1.0.0
- uses: kategengler/put-built-npm-package-contents-on-branch@v2.0.0
with:
branch: dist
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions tests/fixtures/yarn/.github/workflows/push-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- uses: kategengler/put-built-npm-package-contents-on-branch@v1.0.0
- uses: kategengler/put-built-npm-package-contents-on-branch@v2.0.0
with:
branch: dist
token: ${{ secrets.GITHUB_TOKEN }}
working-directory: my-addon
working-directory: my-addon

0 comments on commit f1418ac

Please sign in to comment.