We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3850010 commit 47f27e9Copy full SHA for 47f27e9
.github/workflows/build-app.yml
@@ -15,7 +15,7 @@ jobs:
15
- name: Install dependencies
16
run: go get .
17
- name: Build
18
- run: sh ./build.sh
+ run: sh ./build.bash
19
- name: Upload builds
20
uses: actions/upload-artifact@v4
21
with:
build.sh build.bashbuild.sh renamed to build.bash
@@ -1,6 +1,4 @@
1
-#!/bin/sh
2
-
3
-go get .
+#!/bin/bash
4
5
#build for all platforms
6
platforms=("windows/amd64" "linux/amd64" "darwin/amd64" "darwin/arm64" "linux/arm64" "windows/amd64")
0 commit comments