mirror of
https://github.com/bartvdbraak/homebrew-keyweave.git
synced 2025-04-27 17:41:22 +00:00
feat: initial release pipeline
This commit is contained in:
parent
f69d2c27eb
commit
5b764e0fe6
1 changed files with 16 additions and 0 deletions
16
.github/workflows/release.yml
vendored
Normal file
16
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
name: Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
required: true
|
||||||
|
sha256sums:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: 'echo ${{ inputs.version }}'
|
||||||
|
- run: 'echo ${{ inputs.sha256sums }}'
|
Loading…
Reference in a new issue