Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Sep 15, 2019
1 parent 341a172 commit 1df855b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# `components-nightly` Action

![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)
[![Gitter](https://badges.gitter.im/actions-rs/community.svg)](https://gitter.im/actions-rs/community)

This GitHub Action finds the latest Rust nightly build
with the requested [component](https://rust-lang.github.io/rustup-components-history/) available.

## Background

Ever had the problem when your nightly build breaks because today `nightly`
does not has the `clippy` available? With this Action you can find the most recent
`nightly` build with the clippy available.
Expand All @@ -29,11 +32,11 @@ jobs:
steps:
- uses: actions/checkout@master
- id: component
uses: actions-rs/components-nightly@master
uses: actions-rs/components-nightly@v1
with:
target: x86_64-unknown-linux-gnu
component: clippy
- uses: actions-rs/toolchain@master
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ steps.component.outputs.toolchain }}
override: true
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'rustup components nightly'
name: 'rust-components-nightly'
description: 'Find most recent nightly build with the requested component available'
author: 'actions-rs team'
branding:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rustup-components-nightly",
"version": "0.1.0",
"name": "rust-components-nightly",
"version": "1.0.0",
"private": false,
"description": "Find most recent nightly build with the requested component available",
"main": "lib/main.js",
Expand Down

0 comments on commit 1df855b

Please sign in to comment.