We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf4a73 commit 0aa4a86Copy full SHA for 0aa4a86
2 files changed
README.md
@@ -0,0 +1,21 @@
1
+setup-bpkg-action
2
+=================
3
+
4
+> A GitHub Action the provides the [bkpg](https://github.com/bpkg/bpkg)
5
+> command in an action environment.
6
7
+## Usage
8
9
+See [action.yml](action.yml)
10
11
+```yaml
12
+steps:
13
+- uses: actions/checkout@v3
14
+- uses: bpkg/setup-bpkg-action@v1
15
+ with:
16
+ bpkg-version: 1.1.2
17
+```
18
19
+## License
20
21
+MIT
action.yml
@@ -0,0 +1,14 @@
+name: 'Setup bpkg environment'
+description: 'Setup bpkg in environment making available in PATH'
+author: 'Joseph Werle <joseph.werle@gmail.com>'
+inputs:
+ bpkg-version:
+ description: 'Version (tag) to use for bpkg'
+runs:
+ using: 'composite'
+ steps:
+ - shell: bash
+ run: |
+ curl -sLo- get.bpkg.sh/${{ inputs.bpkg-version }} | bash
0 commit comments