Skip to content

Commit

Permalink
Update package and release
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven65 committed Sep 10, 2024
1 parent c1cc0b3 commit f107c63
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 8 deletions.
43 changes: 42 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 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:
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 build
if: ${{ hashFiles('package-lock.json') != '' && hashFiles('gulp.js') == '' }}
run: npx --yes browserslist@latest --update-db && npm run build
- name: Publish npm package to GHCR
run: npm publish --registry=https://npm.pkg.github.com
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9 changes: 5 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "lix-calculator",
"name": "@helsingborg-stad/lix-calculator",
"version": "4.1.1",
"description": "",
"main": "",
Expand All @@ -10,7 +10,7 @@
"author": "Helsingborg Stad",
"license": "MIT",
"bugs": {
"url": ""
"url": "https://github.com/helsingborg-stad/lix-calculator/issues"
},
"homepage": "https://github.com/helsingborg-stad/lix-calculator",
"scripts": {
Expand All @@ -23,6 +23,7 @@
"> 1%",
"not dead"
],
"files": ["dist/"],
"devDependencies": {
"autoprefixer": "^10.4.2",
"clean-webpack-plugin": "^4.0.0",
Expand Down Expand Up @@ -56,4 +57,4 @@
"@babel/plugin-proposal-class-properties"
]
}
}
}

0 comments on commit f107c63

Please sign in to comment.