mirror of
https://github.com/nykkolin/obsidian-convert-base64-to-png.git
synced 2026-07-22 05:45:47 +00:00
Update GitHub Actions workflow to use build directory
This commit is contained in:
parent
41262b7f9c
commit
c9c00fd839
1 changed files with 4 additions and 2 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
|
@ -22,11 +22,13 @@ jobs:
|
|||
npm install
|
||||
npm run build --if-present
|
||||
- name: List files
|
||||
run: ls -la
|
||||
run: |
|
||||
ls -la
|
||||
ls -la build
|
||||
|
||||
- name: Create Release
|
||||
# https://github.com/ncipollo/release-action
|
||||
uses: ncipollo/release-action@v1.7.3
|
||||
with:
|
||||
artifacts: "main.js,manifest.json,styles.css"
|
||||
artifacts: "build/main.js,build/manifest.json,build/styles.css"
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue