-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite to webpack and add npm release
- Loading branch information
Showing
10 changed files
with
6,671 additions
and
6,390 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,45 @@ jobs: | |
uses: helsingborg-stad/[email protected] | ||
with: | ||
php-version: 8.2 | ||
node-version: 20.6.0 | ||
node-version: 20.6.0 | ||
|
||
build-assets: | ||
needs: ['release'] | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Get latest release version | ||
id: get-version | ||
run: | | ||
echo "LATEST_RELEASE=$(curl -s https://api.github.com/repos/${{ github.repository }}/releases/latest | jq -r '.tag_name')" >> $GITHUB_ENV | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
registry-url: 'https://npm.pkg.github.com/' | ||
- name: Inject access token in .npmrc | ||
run: | | ||
echo "registry=https://npm.pkg.github.com/helsingborg-stad" >> ~/.npmrc | ||
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc | ||
- 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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.