Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
cmxiv committed Sep 25, 2023
1 parent 84eb6a5 commit 2cf29ba
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/publish-to-npm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ jobs:
uses: actions/checkout@v4
with:
ref: main
- uses: actions/setup-node@v3
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- id: generate-a-version-patch
name: 'Generate version patch for later'
run: npm version patch
- id: pull-latest-schema-files
name: 'Get latest schema files'
uses: actions/checkout@v4
Expand All @@ -23,10 +30,6 @@ jobs:
- id: copy-remaining-schema-files
name: 'Copy remaining schema files'
run: cp -r schema/* .
- uses: actions/setup-node@v3
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- id: generate-types
name: 'Generate the typescript types'
run: |
Expand All @@ -49,5 +52,5 @@ jobs:
name: 'Commit bumped up version'
run: |
git status
git log
git log --oneline -n 10
git tag
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-workspace-addon-typescript",
"version": "1.0.1",
"version": "1.0.4",
"description": "Google Workspace Addon typescript types",
"repository": "https://github.com/cmxiv/google-workspace-addon-json-schema",
"author": "Siddhant Tandon <cmxiv914@gmail.com>",
Expand Down

0 comments on commit 2cf29ba

Please sign in to comment.