Updated docs #45
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: Build and Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
name: Create release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup foreman | |
uses: rojo-rbx/setup-foreman@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build asset | |
run: rojo build src/default.project.json --output Icon.rbxm | |
- name: Git Release | |
uses: anton-yurchenko/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DRAFT_RELEASE: "false" | |
PRE_RELEASE: "false" | |
CHANGELOG_FILE: "docs/changelog.md" | |
ALLOW_EMPTY_CHANGELOG: "false" | |
ALLOW_TAG_PREFIX: "true" | |
with: | |
args: | | |
./Icon.rbxm |