deps:chore - update golang Docker tag #2606
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2022 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Build | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
permissions: read-all | |
jobs: | |
build: | |
permissions: | |
contents: write | |
packages: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.17 | |
- name: Install Mage | |
run: go install github.com/magefile/[email protected] | |
- name: Get current date | |
id: date | |
run: mage -v getCurrentDate | |
- name: Git config | |
run: mage -v defaultGitConfig | |
- name: Create local tag | |
run: git tag --force v0.0.0-alpha | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v2 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean --skip-publish --skip-sign --release-notes="README.md" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GORELEASER_CURRENT_TAG: "v0.0.0-alpha" | |
CURRENT_DATE: ${{ steps.date.outputs.date }} | |
CLI_VERSION: "v0.0.0-alpha" | |
- name: check-docker | |
run: docker image ls -a | |
- name: check-binaries | |
run: ls -a dist |