We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0168b60 commit faa4d83Copy full SHA for faa4d83
bitrise.yml
@@ -23,6 +23,20 @@ workflows:
23
- git-clone@8:
24
inputs:
25
- fetch_tags: "yes"
26
+ - script@1:
27
+ title: asdf install
28
+ inputs:
29
+ - content: |-
30
+ #!/usr/bin/env bash
31
+ # fail if any commands fails
32
+ set -e
33
+ # make pipelines' return status equal the last command to exit with a non-zero status, or zero if all commands exit successfully
34
+ set -o pipefail
35
+ # debug log
36
+ set -x
37
+
38
+ # write your script here
39
+ asdf install
40
- script:
41
title: Goreleaser (create binaries + publish to GH)
42
deps:
0 commit comments