Release #7
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 | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: "recursive" | |
- name: Install Aftman | |
uses: ok-nick/setup-aftman@v0 | |
- name: Authenticate Wally | |
run: wally login --token ${{ secrets.WALLY_ACCESS_TOKEN }} | |
- name: Publish package | |
run: wally publish | |
- name: Build project | |
run: rojo build --output VirtualizedList.rbxm | |
- name: Create GitHub Release | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
name: Release ${{ github.ref }} | |
tag: ${{ github.ref }} | |
draft: true | |
- name: Upload build artifact | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./VirtualizedList.rbxm | |
asset_name: VirtualizedList.rbxm | |
asset_content_type: application/octet-stream |