Skip to content

Commit

Permalink
refactor(ci): allow to specify ref
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed Sep 2, 2024
1 parent 109ed70 commit 852717c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
on:
push:
workflow_dispatch:
inputs:
ref:
type: string
default: master
description: The ref of saucer to use

name: 🏗️ Build Bindings

Expand Down Expand Up @@ -51,7 +56,7 @@ jobs:
repository: "saucer/saucer"
sparse-checkout: ".github"
path: "actions"
ref: master
ref: ${{ github.event.inputs.ref || 'master' }}

- name: 🛸 Setup Saucer
uses: ./actions/.github/actions/setup
Expand Down

0 comments on commit 852717c

Please sign in to comment.