mirror of https://github.com/bitcoin/bitcoin.git
Merge bc706955d7
into b510893d00
This commit is contained in:
commit
e73dd2e1fa
|
@ -22,8 +22,12 @@ runs:
|
||||||
uses: actions/github-script@v6
|
uses: actions/github-script@v6
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
core.exportVariable('ACTIONS_CACHE_URL', process.env['ACTIONS_CACHE_URL'])
|
Object.keys(process.env).forEach(function (key) {
|
||||||
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env['ACTIONS_RUNTIME_TOKEN'])
|
if (key.startsWith('ACTIONS_')) {
|
||||||
|
core.info(`Exporting ${key}`);
|
||||||
|
core.exportVariable(key, process.env[key]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
- name: Construct docker build cache args
|
- name: Construct docker build cache args
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Reference in New Issue