-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump default to pkg 5.8.1 * align pkg debugging with gha debugging * align pkg debugging with gha debugging part 2 * align pkg debugging with gha debugging part 3 * align pkg debugging with gha debugging part 4 * align pkg debugging with gha debugging part 5 * align pkg debugging with gha debugging part 6 * align pkg debugging with gha debugging part 7 * align pkg debugging with gha debugging part 8 * align pkg debugging with gha debugging part 9 * align pkg debugging with gha debugging part 10 * align pkg debugging with gha debugging part 11 * align pkg debugging with gha debugging part 12 * align pkg debugging with gha debugging part 13 * align pkg debugging with gha debugging part 14 * align pkg debugging with gha debugging part 15 * align pkg debugging with gha debugging part 16 * align pkg debugging with gha debugging part 17 * align pkg debugging with gha debugging part 18 * align pkg debugging with gha debugging part 19 * align pkg debugging with gha debugging part 20 * align pkg debugging with gha debugging part 21 * align pkg debugging with gha debugging part 22 * align pkg debugging with gha debugging part 23 * align pkg debugging with gha debugging part 24 * align pkg debugging with gha debugging part 25 * align node version usage * align node version usage part 2 * align node version usage part 3 * align node version usage part 4
- Loading branch information
Showing
8 changed files
with
80 additions
and
41 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
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 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 |
---|---|---|
|
@@ -14,4 +14,4 @@ jobs: | |
- name: Prepare release | ||
uses: lando/prepare-release-action@v2 | ||
with: | ||
sync-tags: v2 | ||
sync-tags: v3 |
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 |
---|---|---|
|
@@ -65,3 +65,4 @@ typings/ | |
|
||
.vscode | ||
id_rsa | ||
dist |
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 |
---|---|---|
@@ -1,3 +1,16 @@ | ||
## v3.0.0 - [September 28, 2023](https://github.com/lando/pkg-action/releases/tag/v3.0.0) | ||
|
||
### New Features | ||
|
||
* Bumped default `pkg` input to `[email protected]` | ||
* Bumped default `node-version` input to `16` | ||
* Disabled `--debug` by default. Added support for debug toggling via https://github.blog/changelog/2022-05-24-github-actions-re-run-jobs-with-debug-logging | ||
* Synced `node-version` usage so it is used in all relevant build environments | ||
|
||
### **BREAKING CHANGES** | ||
|
||
* `node-version` input is now just a major version eg `16` instead of `node16` | ||
|
||
## v2.2.2 - [June 17, 2023](https://github.com/lando/pkg-action/releases/tag/v2.2.2) | ||
|
||
* Switched release flow over to [@lando/prepare-release-action](https://github.com/lando/prepare-release-action) | ||
|
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 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 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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#!/usr/bin/env node | ||
const path = require('path'); | ||
const package = require(path.resolve(__dirname, '..', 'package.json')); | ||
|
||
// @NOTE: This is used ONLY for self testing the action | ||
|
||
const path = require('path'); | ||
const package = require(path.resolve(__dirname, '..', 'package.json')); | ||
|
||
console.log(`v${package.version}`); |