Skip to content

Commit

Permalink
update GH action version
Browse files Browse the repository at this point in the history
previous release was not pushed to npm!
  • Loading branch information
NicolasCARPi committed Apr 12, 2024
1 parent ed726d7 commit 4f50ebb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publishing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ jobs:
runs-on: ubuntu-latest
name: Publish latest release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: '22.x'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn install
- name: Build dist files
run: yarn run build
- name: Publish package
uses: JS-DevTools/npm-publish@v2
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
access: 'public'
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 7.0.1

* Upgrade publish action version. Try and fix the publish on npm action.

## 7.0.0

* No issues were reported with alpha versions, so this is the (maintained) stable version now. There are no changes from alpha2.
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": "@deltablot/dropzone",
"version": "7.0.0",
"version": "7.0.1",
"description": "Handles drag and drop of files for you.",
"keywords": [
"dragndrop",
Expand Down

0 comments on commit 4f50ebb

Please sign in to comment.