Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.0.7 #172

Merged
merged 3 commits into from
Dec 12, 2024
Merged

0.0.7 #172

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ Just copy and paste the following in your GitHub action:

```
- name: Run sccache-cache
uses: mozilla-actions/[email protected].6
uses: mozilla-actions/[email protected].7
```

### Conditionally run cache and enable it

```
- name: Run sccache-cache only on non-release runs
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
uses: mozilla-actions/[email protected].6
uses: mozilla-actions/[email protected].7
- name: Set Rust caching env vars only on non-release runs
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
run: |
Expand All @@ -36,7 +36,7 @@ Just copy and paste the following in your GitHub action:

```
- name: Run sccache-cache
uses: mozilla-actions/[email protected].6
uses: mozilla-actions/[email protected].7
with:
version: "v0.7.4"
```
Expand Down Expand Up @@ -101,7 +101,7 @@ When using the action on GitHub Enterprise Server installations a valid GitHub.c

```
- name: Run sccache-cache
uses: mozilla-actions/[email protected].6
uses: mozilla-actions/[email protected].7
with:
token: ${{ secrets.MY_GITHUB_TOKEN }}
```
Expand All @@ -113,6 +113,7 @@ Note that using https://github.com/actions/create-github-app-token is a better o
1. Update the example in README.md
1. Update version in `package.json`
1. Run `npm i --package-lock-only`
1. Run `npm run build`
1. Commit and push the local changes
1. Tag a new release (vX.X.X)
1. Create a new release in github
Expand Down
6 changes: 3 additions & 3 deletions dist/setup/index.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/show_stats/index.js

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sccache-action",
"version": "0.0.6",
"version": "0.0.7",
"description": "Github Action for Sccache",
"main": "dist/setup/index.js",
"engines": {
Expand Down
Loading