We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c513822 commit 85515a1Copy full SHA for 85515a1
1 file changed
.github/workflows/crates.yml
@@ -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
23
+ dry-run: true
0 commit comments