[release-1.13] Update klauspost/compress dependency (#3365) #43
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: Generate and Upload Component Metadata Bundle on Push to Tag | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
upload-bundle: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
cache: 'false' | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build component-metadata-bundle.json | |
run: make bundle-component-metadata | |
- name: Upload component-metadata-bundle.json | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: component-metadata-bundle.json |