Skip to content

Commit

Permalink
Revert some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed Nov 28, 2023
1 parent 2ef66ce commit 5b485e5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 20 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ concurrency:

jobs:
test:
if: false
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
29 changes: 10 additions & 19 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Publish

on: push
# push:
# tags: ["v[0-9]+.[0-9]+.[0-9]+"]
# workflow_dispatch:
# inputs:
# tag:
# description: The existing tag to publish
# type: string
# required: true
on:
push:
tags: ["v[0-9]+.[0-9]+.[0-9]+"]
workflow_dispatch:
inputs:
tag:
description: The existing tag to publish
type: string
required: true

concurrency:
group: publish
Expand All @@ -21,7 +21,6 @@ permissions:
jobs:
# https://flakehub.com/new
flakehub:
if: false
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -38,16 +37,8 @@ jobs:
# https://flakestry.dev/publish
flakestry:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- v1.0.0
- v1.1.0
- v2.0.0
- v2.1.0
fail-fast: true
steps:
- name: Publish flake
uses: flakestry/flakestry-publish@main
with:
version: ${{ matrix.version }}
version: ${{ inputs.tag || github.ref_name }}

0 comments on commit 5b485e5

Please sign in to comment.