Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Replace CI with GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
ViRb3 committed Jan 10, 2020
1 parent c019e21 commit 4923f3b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 17 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,34 @@
name: CI

on: [push]

jobs:
build:

runs-on: [windows-2019]

steps:
- name: Setup MSBuild.exe
uses: warrenbuckley/Setup-MSBuild@v1

- name: Setup Nuget.exe
uses: warrenbuckley/Setup-Nuget@v1

- uses: actions/checkout@v1
- name: Build
run: |
git submodule update --init --recursive
nuget restore de4dot.sln
msbuild de4dot.sln /p:Configuration=Release /m /verbosity:normal /p:WarningLevel=0
- name: Create ZIP
if: startsWith(github.ref, 'refs/tags/')
run: |
Compress-Archive -Path Release/* -DestinationPath de4dot-cex
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: de4dot-cex.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17 changes: 0 additions & 17 deletions appveyor.yml

This file was deleted.

0 comments on commit 4923f3b

Please sign in to comment.