Merge pull request #594 from nginx-proxy/dependabot/go_modules/github… #19
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: Release assets | |
on: | |
push: | |
tags: | |
- "*.*.*" | |
jobs: | |
assets: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Build release assets | |
run: make release | |
- name: Upload release assets | |
uses: alexellis/upload-assets@0.4.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
asset_paths: '["./docker-gen-*.tar.gz"]' | |
- name: Cleanup release assets | |
run: make dist-clean |