Skip to content

Commit

Permalink
fix eval
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Sep 5, 2023
1 parent 9639583 commit 7cb3143
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: "Publish a flake to flakestry"
on:
push:
tags:
- "v?[0-9]+.[0-9]+.[0-9]+*"
- "v?[0-9]+.[0-9]+.[0-9]+"
- "v?[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
tag:
Expand All @@ -18,5 +19,5 @@ jobs:
steps:
- uses: flakestry/flakestry-publish@main
with:
version: "${{ inputs.tag }}"
version: "${{ inputs.tag || github.ref_name }}"
url: "https://backend-dev-test.flakestry.dev"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# test

this is *a test*
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-23.05;

outputs = { git, ... }: {
outputs = { nixpkgs, ... }: {
packages.x86_64-linux.git = nixpkgs.legacyPackages.git;
};
}

0 comments on commit 7cb3143

Please sign in to comment.