GitHub Action
Store variables
name: 'GitHub Action code snippet'
on:
push:
jobs:
# On some job, do some stuff and persist variables meant to be re-used in other jobs
compute-data:
name: Compute data
runs-on: ubuntu-22.04
steps:
# Do your own internal business logic...
- name: Compute resources
run: |
MAGIC_NUMBER=42
echo "Found universal answer: $MAGIC_NUMBER"
echo "Exporting it as ENV variable..."
echo "MAGIC_NUMBER=$MAGIC_NUMBER" >> $GITHUB_ENV
# XXX We recommend to export all your variables at once, at the end of your job
- name: Export variable MAGIC_NUMBER for next jobs
uses: UnlyEd/github-action-store-variable@v3 # See https://github.com/UnlyEd/github-action-store-variable
with:
# Persist (store) our MAGIC_NUMBER ENV variable into our store, for the next jobs
variables: |
MAGIC_NUMBER=${{ env.MAGIC_NUMBER }}
# In another job, read the previously stored variable and use it
retrieve-data:
name: Find & re-use data
runs-on: ubuntu-22.04
needs: compute-data
steps:
- name: Import variable MAGIC_NUMBER
uses: UnlyEd/github-action-store-variable@v3 # See https://github.com/UnlyEd/github-action-store-variable
with:
# List all variables you want to retrieve from the store
# XXX They'll be automatically added to your ENV
variables: |
MAGIC_NUMBER
- name: Debug output
run: echo "We have access to $MAGIC_NUMBER"
If you want to see a real output, check out the output of our code snippet example here.
See the Examples section for more advanced examples.
You can use this action to store variables in a sort of "global store" for your GitHub Actions.
Then, you can read the variables that have been stored previously.
The variables stored can be read by any job within the same workflow.
N.B: When you read a variable, it is automatically added as an ENV variable and will erase any variable with the same name.
This behavior helps keeping the code cleaner by only manipulating (reading/writing) ENV variables. In v1, we had to read the variables from a JSON object, and it was ugly.
N.B: You can both read and write in the same action.
GitHub Actions doesn't allow to natively re-use variables between jobs.
If you need to re-use variables defined in a job in other (subsequent) jobs, then you can use this action.
Name | Required | Default | Description |
---|---|---|---|
variables |
✅ | Write variable: VAR=VALUE - Read variable: VAR |
|
delimiter |
✖️ | \r?\n |
Regex delimiter between each variable, defaults to normal line break |
failIfNotFound |
✖️ | false |
If true, will throw an error (and crash CI) when attempting to read a variable that doesn't exist in the store |
There are no outputs for this action, reading variables automatically adds these variables in ${{ env }}
.
For example, if you read a variable named VAR
, you can then access it by using ${{ env.VAR }}
.
- name: Export one variable
uses: UnlyEd/github-action-store-variable@v2.1.0
with:
variables: FOO=BAR
- name: Export many variables
uses: UnlyEd/github-action-store-variable@v2.1.0
with:
variables: |
FOO=BAR
STAGE=production
Pro-tip: We recommend always using the
variables: |
syntax (multi lines), because it's just simpler to add more variables later on.
- name: Export one variable
uses: UnlyEd/github-action-store-variable@v2.1.0
with:
# Writes "FOO" and reads "STAGE"
variables: |
FOO=BAR
STAGE
- name: Export many variables
uses: UnlyEd/github-action-store-variable@v2.1.0
with:
delimiter: ':'
variables: FOO=BAR:STAGE=production
- name: Import variable MAGIC_NUMBER
uses: UnlyEd/github-action-store-variable@v2.1.0
with:
variables: FOO
- name: Import variable MAGIC_NUMBER
uses: UnlyEd/github-action-store-variable@v2.1.0
with:
variables: |
FOO
STAGE
- name: Import variable MAGIC_NUMBER
uses: UnlyEd/github-action-store-variable@v2.1.0
with:
delimiter: ';'
variables: FOO;STAGE
- name: Import variable MAGIC_NUMBER
uses: UnlyEd/github-action-store-variable@v2.1.0
with:
failIfNotFound: true
variables: WRONG_VARIABLE
N.B: If you want to crash only for some variables, then you can call 2 times the
UnlyEd/github-action-store-variable
and havefailIfNotFound: true
in one of them.
Here are a few community-powered examples, those are usually advanced use-cases!
- Next Right Now (Disclosure: We're the author!)
Learn how to enable logging, from within the
github-action-store-variable
action.
Our GitHub Action is written using the GitHub Actions
native core.debug
API.
Therefore, it allows you to enable logging whenever you need to debug what's happening within our action.
To enable debug mode, you have to set a GitHub Secret, such as:
ACTIONS_STEP_DEBUG
of valuetrue
Please see the official documentation for more information.
Enabling debugging using
ACTIONS_STEP_DEBUG
will also enable debugging for all other GitHub Actions you use that are using thecore.debug
API.
We gladly accept PRs, but please open an issue first, so we can discuss it beforehand.
We follow Semantic Versioning. (major.minor.patch
)
Our versioning process is completely automated, any changes landing on the main
branch will trigger a new release.
(MAJOR)
: Behavioral change of the existing API that would result in a breaking change.- E.g: Removing an input, or changing the output would result in a breaking change and thus would be released as a new MAJOR version.
(MINOR)
: Behavioral change of the existing API that would not result in a breaking change.- E.g: Adding an optional input would result in a non-breaking change and thus would be released as a new MINOR version.
Patch
: Any other change.- E.g: Documentation, tests, refactoring, bug fix, etc.
The examples above use an auto-updated major version tag (@v1
).
It is also possible to use the @latest
tag. (RC stands for "Release candidate", which is similar to a Beta version)
While those options can be useful, we intend to give some "production-grade" best practices.
- Do NOT use
@latest
for production, ever. While only "supposed-to-be-stable" versions will be tagged as@latest
, it could harbor bugs nonetheless. - You can use auto-upgrading major version, such as
@v1
or@v1.2
, but this is not always the best practice, see our explanations below.
Here are a few useful options you can use to pin a more-or-less specific version of our GitHub Action, alongside some " production-grade" best practices.
@{COMMIT-SHA}
, e.g:@1271dc3fc4c4c8bc62ba5a4e248dac95cb82d0e3
, recommended for all production-grade apps, it's the only truly safe way to pinpoint a version that cannot change against your will (SAFEST)@{MAJOR}-{MINOR}-{PATCH}
, e.g:@v1.2.31
, while not as safe as theCOMMIT-SHA
way, it's what most people use ( SAFER)@{MAJOR}
, e.g:@v1
, can be used on production, but we do not advise to do so (SAFE-ISH)@{MAJOR}-rc
, e.g:@v1-rc
, reserved for development mode, useful when debugging on a specific prerelease version (UNSAFE)@{MAJOR}.{MINOR}
, e.g:@v1.2
, can be used on production, but we do not advise to do so (SAFE-ISH)@{MAJOR}.{MINOR}-rc
, e.g:@v1.2-rc
, reserved for development mode, useful when debugging on a specific prerelease version (UNSAFE)@latest
, reserved for development mode, useful when debugging (UNSAFE)
"But, what is the issue with the @{MAJOR}-{MINOR}-{PATCH}
way to pin a specific version"?
Well, if this repository gets hacked by a 3rd party, they can easily change all Git tags to a different commit, which could contain malicious code.
That's why pinning a specific commit SHA is the only truly safe option. This way, the code you're using cannot be changed against your will.
Most people won't care about this and will use a MAJOR version tag instead anyway, such as @v1
. It's common, but not
often the best practice.
It all comes down to the risks you're ready to take, and it's up to you to decide what's best in your situation.
This project is being authored by:
- [Unly] Ambroise Dhenain (Vadorequest) (active)
- Hugo Martin (Demmonius) (active)
Unly is a socially responsible company, fighting inequality and facilitating access to higher education. Unly is committed to making education more inclusive, through responsible funding for students.
We provide technological solutions to help students find the necessary funding for their studies.
We proudly participate in many TechForGood initiatives. To support and learn more about our actions to make education accessible, visit :
- https://twitter.com/UnlyEd
- https://www.facebook.com/UnlyEd/
- https://www.linkedin.com/company/unly
- Interested to work with us?
Tech tips and tricks from our CTO on our Medium page!