Skip to content

Commit

Permalink
#317 Try to fix package
Browse files Browse the repository at this point in the history
  • Loading branch information
wouter-adriaens committed Sep 27, 2024
1 parent 60c35e2 commit 059906a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
always-auth: true
node-version: '18.x'
node-version: 20
registry-url: https://registry.npmjs.org
- run: yarn ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GOVFLANDERS_NPM_TOKEN}}
- run: yarn build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
Expand All @@ -31,18 +31,18 @@ jobs:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: dist
path: dist/
- name: Display folder structure
run: ls -R
- name: Build and publish
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
always-auth: true
node-version: 16
node-version: 20
registry-url: https://npm.pkg.github.com/
- run: |
echo @OnroerendErfgoed:registry=https://npm.pkg.github.com/ > ~/.npmrc
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"main": "./dist/vue-components.umd.js",
"module": "./dist/vue-components.es.js",
"typings": "./dist/src/main.d.ts",
"version": "1.17.6",
"version": "1.17.7",
"exports": {
".": {
"import": "./dist/vue-components.es.js",
Expand Down Expand Up @@ -133,5 +133,5 @@
"@govflanders/vl-ui-design-system-style": "^1.0.0-alpha.3",
"pyoes": "https://gitpkg.now.sh/OnroerendErfgoed/pyoes/npm-packages/pyoes"
},
"_id": "[email protected].6"
"_id": "[email protected].7"
}
1 change: 0 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export default defineConfig({
targets: [
{ src: 'src/scss/*', dest: 'scss' },
{ src: 'src/assets/*', dest: 'assets' },
{ src: 'public/*', dest: 'public' },
],
}),
],
Expand Down

0 comments on commit 059906a

Please sign in to comment.