We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7db660 commit c8c2cfcCopy full SHA for c8c2cfc
.github/workflows/publish.yml
@@ -0,0 +1,17 @@
1
+name: Publish Package to npmjs
2
+on:
3
+ release:
4
+ types: [published]
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: actions/setup-node@v3
11
+ with:
12
+ node-version: '19.x'
13
+ registry-url: 'https://registry.npmjs.org'
14
+ - run: npm install
15
+ - run: npm publish
16
+ env:
17
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package.json
@@ -2,7 +2,7 @@
"name": "directus-extension-schema-sync",
"description": "The directus schema command but it avoids git conflicts",
"icon": "extension",
- "version": "1.0.0",
+ "version": "0.9.0",
"keywords": [
"directus",
"directus-extension",
0 commit comments