Skip to content

Commit 85515a1

Browse files
authored
Create crates.yml
1 parent c513822 commit 85515a1

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/crates.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: crates.io
4+
5+
on:
6+
workflow_dispatch:
7+
8+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
9+
jobs:
10+
build:
11+
# The type of runner that the job will run on
12+
runs-on: ubuntu-latest
13+
14+
# Steps represent a sequence of tasks that will be executed as part of the job
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: actions-rs/toolchain@v1
18+
with:
19+
toolchain: stable
20+
override: true
21+
- uses: katyo/publish-crates@v1
22+
with:
23+
dry-run: true

0 commit comments

Comments
 (0)