Added 2d6 rolling mode #191
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: FateX CI | |
on: | |
push: | |
tags: | |
- '0.*' | |
- '1.*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get Version | |
shell: bash | |
id: get-version | |
run: echo "::set-output name=version::$(node ./.github/workflows/get-version.js)" | |
- name: Install dependencies and run webpack | |
run: | | |
npm ci | |
npm run build:production | |
- name: Create installable system zip file | |
run: cd dist && zip -r ../fatex.zip * | |
- name: Create release | |
id: create_versioned_release | |
uses: ncipollo/release-action@v1 | |
with: | |
name: ${{ steps.get-version.outputs.version }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
artifacts: './system/system.json,./fatex.zip' |