Merge pull request #120 from wayofdev/release-please--branches--maste… #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
--- | |
# https://github.com/google-github-actions/release-please-action#release-types-supported | |
on: # yamllint disable-line rule:truthy | |
push: | |
tags: | |
- "v*.*.*" | |
name: 📤 Upload artifacts | |
jobs: | |
upload-artifacts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📦 Check out the codebase | |
uses: actions/checkout@v4 | |
- name: 🚀 Generate dist files | |
run: make generate | |
- name: 🗜️ Archive dist files | |
run: tar -czvf dist.tar.gz dist | |
- name: 📤 Upload release assets | |
uses: alexellis/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
asset_paths: '["./dist.tar.gz"]' | |
... |