Skip to content

Commit

Permalink
Add cache-cargo-install-action to related project list
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jan 14, 2023
1 parent 92ce97d commit 8fc92f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Currently, changelog format and supported tag names have the following rule:
[If the `changelog` option is not specified, the changelog is ignored and only the release created.](#example-workflow-no-changelog)

- The supported tag format is `v?MAJOR.MINOR.PATCH(-PRERELEASE)?(+BUILD_METADATA)?`.
(leading "v", pre-release version, and build metadata are optional.)
(leading "v", pre-release version, and build metadata are optional.) The optional prefix is also supported.
This is based on [Semantic Versioning][semver]

### Inputs
Expand Down Expand Up @@ -225,9 +225,11 @@ To use this action in self-hosted runners or in containers, you will need to ins

- [upload-rust-binary-action]: GitHub Action for building and uploading Rust binary to GitHub Releases.
- [parse-changelog]: Simple changelog parser, written in Rust. Used in this action.
- [install-action]: GitHub Action for installing development tools.
- [setup-cross-toolchain-action]: GitHub Action for setup toolchains for cross compilation and cross testing for Rust.
- [install-action]: GitHub Action for installing development tools (mainly from GitHub Releases).
- [cache-cargo-install-action]: GitHub Action for `cargo install` with cache.

[cache-cargo-install-action]: https://github.com/taiki-e/cache-cargo-install-action
[install-action]: https://github.com/taiki-e/install-action
[keepachangelog]: https://keepachangelog.com/en/1.0.0
[parse-changelog]: https://github.com/taiki-e/parse-changelog
Expand Down
3 changes: 2 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
// without docker before composite actions were supported. However, due to
// various problems with composite actions, this trick is still needed:
// - https://github.com/actions/runner/issues/665
// - https://github.com/actions/runner/issues/1947
// - https://github.com/actions/runner/issues/2185
// Although there are ways to work around these like cache-cargo-install-action does:
// https://github.com/taiki-e/cache-cargo-install-action/blob/v1.0.1/action.yml#L9-L11

const { execFileSync } = require('child_process');

Expand Down

0 comments on commit 8fc92f3

Please sign in to comment.