Skip to content

Commit 65101d4

Browse files
authored
Merge pull request #190 from sylvestre/release
prepare release 0.0.8
2 parents a2b43af + 784917c commit 65101d4

File tree

6 files changed

+20
-15
lines changed

6 files changed

+20
-15
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ Just copy and paste the following in your GitHub action:
1616

1717
```
1818
- name: Run sccache-cache
19-
uses: mozilla-actions/sccache-action@v0.0.7
19+
uses: mozilla-actions/sccache-action@v0.0.8
2020
```
2121

2222
### Conditionally run cache and enable it
2323

2424
```
2525
- name: Run sccache-cache only on non-release runs
2626
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
27-
uses: mozilla-actions/sccache-action@v0.0.7
27+
uses: mozilla-actions/sccache-action@v0.0.8
2828
- name: Set Rust caching env vars only on non-release runs
2929
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
3030
run: |
@@ -34,11 +34,13 @@ Just copy and paste the following in your GitHub action:
3434

3535
### Specify a given version of sccache
3636

37+
Versions prior to sccache v0.10.0 probably will not work.
38+
3739
```
3840
- name: Run sccache-cache
39-
uses: mozilla-actions/sccache-action@v0.0.7
41+
uses: mozilla-actions/sccache-action@v0.0.8
4042
with:
41-
version: "v0.7.4"
43+
version: "v0.10.0"
4244
```
4345

4446
### To get the execution stats
@@ -101,7 +103,7 @@ When using the action on GitHub Enterprise Server installations a valid GitHub.c
101103

102104
```
103105
- name: Run sccache-cache
104-
uses: mozilla-actions/sccache-action@v0.0.7
106+
uses: mozilla-actions/sccache-action@v0.0.8
105107
with:
106108
token: ${{ secrets.MY_GITHUB_TOKEN }}
107109
```

dist/setup/index.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/show_stats/index.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sccache-action",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "Github Action for Sccache",
55
"main": "dist/setup/index.js",
66
"engines": {

src/setup.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ async function setup() {
6868

6969
// Expose the gha cache related variable to make it easier for users to
7070
// integrate with gha support.
71-
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
71+
core.exportVariable(
72+
'ACTIONS_RESULTS_URL',
73+
process.env.ACTIONS_RESULTS_URL || ''
74+
);
7275
core.exportVariable(
7376
'ACTIONS_RUNTIME_TOKEN',
7477
process.env.ACTIONS_RUNTIME_TOKEN || ''

0 commit comments

Comments
 (0)