Skip to content

Commit

Permalink
v0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasLukasczyk committed Sep 19, 2023
1 parent 6c74542 commit ef6e48b
Show file tree
Hide file tree
Showing 66 changed files with 10,208 additions and 102 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build/release
on:
push:

jobs:
release:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- name: Check out Git repository
uses: actions/checkout@v3

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v3
with:
node-version: 16

- name: Install Dependencies
run: 'npm install'

- name: Build
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: 'npm run publish'
1 change: 1 addition & 0 deletions lib/ARCC/fable_modules/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*
Loading

0 comments on commit ef6e48b

Please sign in to comment.