mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-11-18 16:01:06 +08:00
Implement set-secret (#141)
* Implement set-secret * Update RELEASES.md * Feedback
This commit is contained in:
parent
6fcaac5046
commit
14d6a0a2d2
@ -1,7 +1,8 @@
|
||||
# @actions/core Releases
|
||||
|
||||
### Unreleased
|
||||
### 1.2.0
|
||||
|
||||
- set-secret is now available for use [#141](https://github.com/actions/toolkit/issues/141)
|
||||
- Add support for action input variables with multiple spaces [#127](https://github.com/actions/toolkit/issues/127)
|
||||
- Switched ## commands to :: commands (should have no noticeable impact) [#110)(https://github.com/actions/toolkit/pull/110)
|
||||
|
||||
|
||||
2
packages/core/package-lock.json
generated
2
packages/core/package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@actions/core",
|
||||
"version": "1.0.1",
|
||||
"version": "1.1.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@actions/core",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"description": "Actions core lib",
|
||||
"keywords": [
|
||||
"github",
|
||||
|
||||
@ -51,7 +51,6 @@ export function exportSecret(name: string, val: string): void {
|
||||
// the runner will error with not implemented
|
||||
// leaving the function but raising the error earlier
|
||||
issueCommand('set-secret', {}, val)
|
||||
throw new Error('Not implemented.')
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user