Skip to content

switch to rhythm.cafe urls for downloading #25

switch to rhythm.cafe urls for downloading

switch to rhythm.cafe urls for downloading #25

Workflow file for this run

name: Check
on:
push:
branches:
- "master"
pull_request:
env:
APP_NAME: "levelsync"
NIM_VERSION: '1.6.10'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nim
uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ env.NIM_VERSION }}
- name: Build
run: nimble build -d:release -y
- name: Store artifacts
uses: actions/upload-artifact@v2
with:
name: binary-${{ matrix.os }}
path: |
${{ env.APP_NAME }}
${{ env.APP_NAME }}.exe