-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,9 @@ jobs: | |
build-assets: | ||
needs: ['release'] | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Get latest release version | ||
id: get-version | ||
|
@@ -32,6 +35,13 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Update version in package.json | ||
run: | | ||
# Read the latest release version from environment variable | ||
LATEST_VERSION="${{ env.LATEST_RELEASE }}" | ||
# Update the "version" field in package.json using jq | ||
jq --arg version "$LATEST_VERSION" '.version = $version' package.json > temp.json && mv temp.json package.json | ||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
|
@@ -43,15 +53,13 @@ jobs: | |
- name: Run CI | ||
if: ${{ hashFiles('package.json') != '' && hashFiles('package-lock.json') != '' }} | ||
run: npm ci --no-progress --no-audit | ||
- name: Run install | ||
if: ${{ hashFiles('package.json') != '' && hashFiles('package-lock.json') == '' }} | ||
run: npm install --no-progress --no-audit | ||
- name: Run build | ||
if: ${{ hashFiles('package-lock.json') != '' && hashFiles('gulp.js') == '' }} | ||
run: npx --yes browserslist@latest --update-db && npm run build | ||
- name: Run gulp | ||
if: ${{ hashFiles('package-lock.json') != '' && hashFiles('gulp.js') != '' }} | ||
run: gulp | ||
- name: Publish npm package to GHCR | ||
run: npm publish --registry=https://npm.pkg.github.com | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Create assets zip | ||
uses: thedoctor0/[email protected] | ||
if: ${{ hashFiles('dist/') != '' }} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
.* | ||
~* | ||
|
||
!.github | ||
# ignore node/grunt dependency directories | ||
node_modules/ | ||
|
||
|
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"css/broken-link-detector.css": "css/broken-link-detector.fdba7e11c160efd580f5.css", | ||
"js/broken-link-detector.js": "js/broken-link-detector.31d6cfe0d16ae931b73c.js", | ||
"js/mce-broken-link-detector.js": "js/mce-broken-link-detector.f59b3e265be67daef9ba.js" | ||
} |
This file was deleted.