Skip to content

Commit

Permalink
Workaround Gitlab user chown
Browse files Browse the repository at this point in the history
  • Loading branch information
tzununbekov committed Feb 20, 2024
1 parent 72d2fe9 commit 8d0cdcb
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21.x'

- name: Prepare environment
run: |
Expand Down Expand Up @@ -61,14 +57,6 @@ jobs:
export BUILD_VERSION=$BUILD_VERSION;
EOT
# - name: Generate env file
# run: go run mage.go -v GenerateEnvFile

# - name: Create bucket
# if: github.event_name == 'push'
# run: go run mage.go -v MakeBucket

- uses: actions/upload-artifact@v4
with:
name: env.sh
Expand Down Expand Up @@ -104,6 +92,11 @@ jobs:
with:
name: env.sh

- name: Create bucket
run: |
source env.sh
go run mage.go -v MakeBucket
- name: Setup FPM
run: |
sudo apt-get install ruby-dev build-essential
Expand All @@ -112,7 +105,7 @@ jobs:
- name: Build package
run: |
source env.sh
go run mage.go -v ${{ matrix.platform }}
CI=false go run mage.go -v ${{ matrix.platform }}
build-swagger:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8d0cdcb

Please sign in to comment.