mirror of
https://github.com/FranzDiebold/github-env-vars-action.git
synced 2024-11-22 16:51:03 -05:00
Fix environment variable export.
This commit is contained in:
parent
7fed643c47
commit
64bf94c273
2 changed files with 6 additions and 6 deletions
6
dist/index.js
vendored
6
dist/index.js
vendored
|
@ -161,13 +161,13 @@ function slugify(str) {
|
|||
// https://help.github.com/en/actions/automating-your-workflow-with-github-actions/using-environment-variables#default-environment-variables
|
||||
try {
|
||||
splitted_github_repository = process.env.GITHUB_REPOSITORY.split('/'); // octocat/Hello-World
|
||||
process.env['GITHUB_REPO_OWNER'] = slugify(splitted_github_repository[0]);
|
||||
core.exportVariable('GITHUB_REPO_OWNER', slugify(splitted_github_repository[0]));
|
||||
core.info(`Set GITHUB_REPO_OWNER=${process.env.GITHUB_REPO_OWNER}`);
|
||||
process.env['GITHUB_REPO_NAME'] = slugify(splitted_github_repository[1]);
|
||||
core.exportVariable('GITHUB_REPO_NAME', slugify(splitted_github_repository[1]));
|
||||
core.info(`Set GITHUB_REPO_NAME=${process.env.GITHUB_REPO_NAME}`);
|
||||
|
||||
splitted_github_ref = process.env.GITHUB_REF.split('/'); // refs/heads/feature-branch-1
|
||||
process.env['GITHUB_BRANCH_NAME'] = slugify(splitted_github_ref[2]);
|
||||
core.exportVariable('GITHUB_BRANCH_NAME', slugify(splitted_github_ref[2]));
|
||||
core.info(`Set GITHUB_BRANCH_NAME=${process.env.GITHUB_BRANCH_NAME}`);
|
||||
} catch (error) {
|
||||
core.setFailed(error.message);
|
||||
|
|
6
index.js
6
index.js
|
@ -14,13 +14,13 @@ function slugify(str) {
|
|||
// https://help.github.com/en/actions/automating-your-workflow-with-github-actions/using-environment-variables#default-environment-variables
|
||||
try {
|
||||
splitted_github_repository = process.env.GITHUB_REPOSITORY.split('/'); // octocat/Hello-World
|
||||
process.env['GITHUB_REPO_OWNER'] = slugify(splitted_github_repository[0]);
|
||||
core.exportVariable('GITHUB_REPO_OWNER', slugify(splitted_github_repository[0]));
|
||||
core.info(`Set GITHUB_REPO_OWNER=${process.env.GITHUB_REPO_OWNER}`);
|
||||
process.env['GITHUB_REPO_NAME'] = slugify(splitted_github_repository[1]);
|
||||
core.exportVariable('GITHUB_REPO_NAME', slugify(splitted_github_repository[1]));
|
||||
core.info(`Set GITHUB_REPO_NAME=${process.env.GITHUB_REPO_NAME}`);
|
||||
|
||||
splitted_github_ref = process.env.GITHUB_REF.split('/'); // refs/heads/feature-branch-1
|
||||
process.env['GITHUB_BRANCH_NAME'] = slugify(splitted_github_ref[2]);
|
||||
core.exportVariable('GITHUB_BRANCH_NAME', slugify(splitted_github_ref[2]));
|
||||
core.info(`Set GITHUB_BRANCH_NAME=${process.env.GITHUB_BRANCH_NAME}`);
|
||||
} catch (error) {
|
||||
core.setFailed(error.message);
|
||||
|
|
Loading…
Reference in a new issue