Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
agc93 committed Aug 19, 2020
0 parents commit 916b6d0
Show file tree
Hide file tree
Showing 24 changed files with 1,342 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"cake.tool": {
"version": "0.38.4",
"commands": [
"dotnet-cake"
]
}
}
}
49 changes: 49 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: ACMI CI Build

on:
push:
branches: [ master ]
paths-ignore:
- "docs/**"
- ".github/workflows/docs.yml"
tags:
- 'v*.*.*'
pull_request:
branches: [ master ]
paths-ignore:
- "docs/**"
- ".github/workflows/docs.yml"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.100'
- name: Run the Cake script
uses: cake-build/cake-action@v1
with:
target: Release
cake-bootstrap: true
- uses: actions/upload-artifact@v1
name: Upload Artifacts
with:
name: acmi-cli
path: dist/publish/
- name: Create Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
body: |
Download and unpack the archive for your system (Windows/Linux) from below.
files: |
./dist/archive/*.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 916b6d0

Please sign in to comment.