Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeny Metelkin committed Dec 27, 2023
1 parent 11e6adf commit 17f3153
Show file tree
Hide file tree
Showing 4 changed files with 362 additions and 169 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node.js 12.x
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 12.x
- run: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Use Node.js 12.x
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 12.x
- name: Build SV app
Expand All @@ -25,12 +25,12 @@ jobs:
rm -rf site/online/*
cp -rf dist/sv/* site/online
- name: Deploy to "gh-pages"
uses: JamesIves/github-pages-deploy-action@releases/v3
uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: site # The folder the action should deploy.
CLEAN: false
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages # The branch the action should deploy to.
folder: site # The folder the action should deploy.
clean: false
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down
Loading

0 comments on commit 17f3153

Please sign in to comment.