Release v0.13.0-rc.22 #60
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: Create release packages | |
on: | |
release: | |
types: [published] | |
jobs: | |
package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Build releases | |
run: make builds | |
- name: Creating release packages | |
run: make packages | |
- name: List files | |
run: ls packaging/out/* | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: packages | |
path: | | |
packaging/out/* | |
- uses: AButler/[email protected] | |
with: | |
files: "packaging/out/*" | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |