Skip to content

chore: bump github.com/aws/aws-sdk-go from 1.51.30 to 1.52.2 (#104) #56

chore: bump github.com/aws/aws-sdk-go from 1.51.30 to 1.52.2 (#104)

chore: bump github.com/aws/aws-sdk-go from 1.51.30 to 1.52.2 (#104) #56

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- .github/**
- docs/**
- LICENSES/**
- README.md
- mkdocs.yaml
workflow_run:
workflows: [CI]
types: [completed]
branches: [main]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
cache: true
- name: Create Helm Compose Distributions
run: make dist
- uses: actions/upload-artifact@v4
with:
name: helm-compose
path: release/*
- name: Publish release
if: "contains(github.event.head_commit.message, 'docs: release')"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
TAG=$(git describe --abbrev=0)
for FILE in release/*.tgz; do
gh release upload ${TAG} ${FILE} --clobber
done
gh release edit ${TAG} --latest --prerelease=false