We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd60f6b commit 63a1608Copy full SHA for 63a1608
.github/workflows/flakestry.yaml
@@ -0,0 +1,23 @@
1
+name: "Publish a flake to flakestry"
2
+on:
3
+ push:
4
+ tags:
5
+ - "v?[0-9]+.[0-9]+.[0-9]+"
6
+ - "v?[0-9]+.[0-9]+"
7
+ workflow_dispatch:
8
+ inputs:
9
+ tag:
10
+ description: "The existing tag to publish"
11
+ type: "string"
12
+ required: true
13
+jobs:
14
+ publish-flake:
15
+ runs-on: ubuntu-latest
16
+ permissions:
17
+ id-token: "write"
18
+ contents: "read"
19
+ steps:
20
+ - uses: flakestry/flakestry-publish@main
21
+ with:
22
+ version: "${{ inputs.tag || github.ref_name }}"
23
+ url: "https://staging.flakestry.dev"
0 commit comments