-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (38 loc) · 1.08 KB
/
flakehub-publish-tagged.yml
File metadata and controls
38 lines (38 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Publish tags to FlakeHub
on:
push:
tags:
- "v?[0-9]+.[0-9]+.[0-9]+*"
workflow_dispatch:
inputs:
tag:
description: "The existing tag to publish to FlakeHub"
type: "string"
required: true
jobs:
flakehub-publish:
runs-on: "ubuntu-latest"
environment:
name: dev
permissions:
id-token: "write"
contents: "read"
steps:
- uses: "actions/checkout@main"
with:
ref: "${{ (inputs.tag != null) && format('refs/tags/{0}', inputs.tag) || '' }}"
- name: Set env var
run: echo "OS_NIXCFG=$(pwd)" >> "$GITHUB_ENV"
- uses: "DeterminateSystems/nix-installer-action@main"
with:
determinate: true
- name: SSH-agent with auth for private repos
uses: webfactory/ssh-agent@master
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- uses: "DeterminateSystems/flakehub-push@main"
with:
visibility: "public"
name: "DivitMittal/OS-nixCfg"
tag: "${{ inputs.tag }}"
include-output-paths: true