v0.0.59: try this
This commit is contained in:
+2
-1
@@ -32,7 +32,8 @@ runs:
|
|||||||
id: publish
|
id: publish
|
||||||
env:
|
env:
|
||||||
TOKEN: ${{ github.token }}
|
TOKEN: ${{ github.token }}
|
||||||
who_to_greet: ${{ env.registry }}
|
who_to_greet: ${{ inputs.registry }}
|
||||||
|
who_to_greet2: Monalisa
|
||||||
- name: Output variables
|
- name: Output variables
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
+2
@@ -74746,6 +74746,8 @@ async function run() {
|
|||||||
core.info(`Hello, ${whoToGreet}!`);
|
core.info(`Hello, ${whoToGreet}!`);
|
||||||
const token2 = process.env.TOKEN;
|
const token2 = process.env.TOKEN;
|
||||||
core.info(`Hello, ${token2}!`);
|
core.info(`Hello, ${token2}!`);
|
||||||
|
const token3 = process.env.who_to_greet2;
|
||||||
|
core.info(`Hello, ${token3}!`);
|
||||||
// Parse and validate Actions execution context, including the repository name, release name and event type
|
// Parse and validate Actions execution context, including the repository name, release name and event type
|
||||||
const repository = process.env.GITHUB_REPOSITORY || '';
|
const repository = process.env.GITHUB_REPOSITORY || '';
|
||||||
if (repository === '') {
|
if (repository === '') {
|
||||||
|
|||||||
@@ -17,6 +17,8 @@ export async function run(): Promise<void> {
|
|||||||
core.info(`Hello, ${whoToGreet}!`)
|
core.info(`Hello, ${whoToGreet}!`)
|
||||||
const token2 = process.env.TOKEN
|
const token2 = process.env.TOKEN
|
||||||
core.info(`Hello, ${token2}!`)
|
core.info(`Hello, ${token2}!`)
|
||||||
|
const token3 = process.env.who_to_greet2
|
||||||
|
core.info(`Hello, ${token3}!`)
|
||||||
|
|
||||||
// Parse and validate Actions execution context, including the repository name, release name and event type
|
// Parse and validate Actions execution context, including the repository name, release name and event type
|
||||||
const repository: string = process.env.GITHUB_REPOSITORY || ''
|
const repository: string = process.env.GITHUB_REPOSITORY || ''
|
||||||
|
|||||||
Reference in New Issue
Block a user