From 9dcfce0b964c4e3dad7ed80b468046b5f0cafe73 Mon Sep 17 00:00:00 2001 From: hackerhgl Date: Fri, 21 May 2021 07:28:52 +0500 Subject: [PATCH] Added chmod on release binaries --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9099ea8..cbaeffd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,6 +26,7 @@ jobs: - uses: actions/checkout@v2 - run: | go build -o build/minesweeper-linux + chmod 777 minesweeper-linux - name: linux release build for github uses: ncipollo/release-action@v1 with: @@ -40,6 +41,7 @@ jobs: - uses: actions/checkout@v2 - run: | go build -o build/minesweeper-macos + chmod 777 minesweeper-macos - name: macos release build for github uses: ncipollo/release-action@v1 with: