Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: release

on:
push:
branches: [ master ]

jobs:

build:
name: build
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
- run: echo "::add-path::C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build"
- run: echo "::set-env name=INCLUDE::$env:INCLUDE;$env:JAVA_HOME\include;$env:JAVA_HOME\include\win32"
- run: |
choco install pandoc
nmake dist
- uses: actions/upload-artifact@v1
with:
name: package
path: tolk.zip

release:
name: release
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/download-artifact@v1
with:
name: package
- uses: meeDamian/github-release@2.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
files: ./package/tolk.zip
gzip: false
allow_override: true
25 changes: 0 additions & 25 deletions appveyor.yml

This file was deleted.

2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Tolk: Screen Reader Abstraction Library

* [Latest build from AppVeyor](https://ci.appveyor.com/api/projects/dkager/tolk/artifacts/tolk.zip?branch=master)
* [Latest build](https://github.com/ndarilek/tolk/releases/download/refs%2Fheads%2Fmaster/tolk.zip)
* [Project page](https://davykager.com/projects/tolk/)

## Introduction
Expand Down