Merge pull request #2401 from nspcc-dev/fix-workflows

github: adjust Docker image publishing workflows
This commit is contained in:
Roman Khimov 2022-03-21 16:51:29 +03:00 committed by GitHub
commit 694152098f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,6 +73,11 @@ jobs:
# Allows to fetch all history for all branches and tags. Need this for proper versioning. # Allows to fetch all history for all branches and tags. Need this for proper versioning.
fetch-depth: 0 fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Build image - name: Build image
run: make image run: make image
@ -141,6 +146,11 @@ jobs:
- name: Show docker images - name: Show docker images
run: docker images run: docker images
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Build image - name: Build image
run: make image-wsc run: make image-wsc