Update module github.com/aws/aws-sdk-go to v1.48.11 - autoclosed #357
Workflow file for this run
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
name: "go" | |
on: | |
release: | |
types: [published] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v2 | |
- name: Get the version | |
id: get_version | |
run: | | |
if [[ $GITHUB_REF == refs/tags/* ]]; then | |
echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
else | |
echo "VERSION=${GITHUB_SHA}" >> $GITHUB_OUTPUT | |
fi | |
- name: "Build Go binaries" | |
uses: cloudposse/actions/go/build@0.28.0 | |
env: | |
GO111MODULE: on | |
# Architectures to build for | |
GOX_OSARCH: >- | |
windows/386 windows/amd64 freebsd/arm netbsd/386 netbsd/amd64 netbsd/arm linux/s390x linux/arm darwin/amd64 | |
linux/386 linux/amd64 freebsd/amd64 freebsd/386 openbsd/386 openbsd/amd64 | |
OUTPUT_PATH: ${{ github.workspace }}/release/turf_ | |
LDFLAGS: "-X 'github.com/cloudposse/turf/cmd.Version=${{ steps.get_version.outputs.VERSION }}'" | |
- name: "Upload artifacts to GitHub" | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ github.event.repository.name }} | |
path: ${{ github.workspace }}/release/* | |
- name: "Attach artifacts to GitHub Release" | |
if: ${{ github.event_name == 'release' }} | |
uses: cloudposse/actions/github/release-assets@0.28.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
INPUT_PATH: ${{ github.workspace }}/release/turf_* |