Update GH actions

* Update GH actions

* Fix

* Fix "Cannot open: File exists" messages
This commit is contained in:
Deluan Quintão 2022-11-26 14:11:39 -05:00 committed by GitHub
parent 1b5f855bff
commit 76a94ecb70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,6 @@ jobs:
uses: actions/setup-go@v3 uses: actions/setup-go@v3
with: with:
go-version: 1.19 go-version: 1.19
id: go
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -53,22 +52,14 @@ jobs:
- name: Install taglib - name: Install taglib
run: sudo apt-get install libtag1-dev run: sudo apt-get install libtag1-dev
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go_version }} - name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v3 uses: actions/setup-go@v3
with: with:
go-version: ${{ matrix.go_version }} go-version: ${{ matrix.go_version }}
id: go cache: true
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- uses: actions/cache@v2
id: cache-go
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go_version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go_version }}-
- name: Download dependencies - name: Download dependencies
if: steps.cache-go.outputs.cache-hit != 'true' if: steps.cache-go.outputs.cache-hit != 'true'
@ -86,7 +77,7 @@ jobs:
NODE_OPTIONS: '--max_old_space_size=4096' NODE_OPTIONS: '--max_old_space_size=4096'
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-node@v2 - uses: actions/setup-node@v3
with: with:
node-version: 16 node-version: 16
cache: 'npm' cache: 'npm'
@ -112,7 +103,7 @@ jobs:
cd ui cd ui
npm run build npm run build
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v3
with: with:
name: js-bundle name: js-bundle
path: ui/build path: ui/build
@ -128,7 +119,7 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v3
with: with:
name: js-bundle name: js-bundle
path: ui/build path: ui/build
@ -155,7 +146,7 @@ jobs:
with: with:
args: goreleaser release --rm-dist args: goreleaser release --rm-dist
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v3
with: with:
name: binaries name: binaries
path: | path: |
@ -173,18 +164,18 @@ jobs:
steps: steps:
- name: Set up QEMU - name: Set up QEMU
id: qemu id: qemu
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v2
if: env.DOCKER_IMAGE != '' if: env.DOCKER_IMAGE != ''
- name: Set up Docker Buildx - name: Set up Docker Buildx
id: buildx id: buildx
uses: docker/setup-buildx-action@v1 uses: docker/setup-buildx-action@v2
if: env.DOCKER_IMAGE != '' if: env.DOCKER_IMAGE != ''
- uses: actions/checkout@v3 - uses: actions/checkout@v3
if: env.DOCKER_IMAGE != '' if: env.DOCKER_IMAGE != ''
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v3
if: env.DOCKER_IMAGE != '' if: env.DOCKER_IMAGE != ''
with: with:
name: binaries name: binaries