Skip to content

Commit

Permalink
Added (unfinished) release step to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SuNNjek committed Oct 15, 2020
1 parent a3cfddd commit 4bb9078
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml → .github/workflows/dll.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: CI
name: Build DLLs

on:
push:
branches:
- master
tags:
- 'v*'

jobs:
build_windows_x64:
Expand Down Expand Up @@ -46,4 +48,15 @@ jobs:
- uses: actions/upload-artifact@v2
with:
name: rotate-x86
path: rotate.dll
path: rotate.dll

release:
runs-on: ubuntu-latest
needs: [build_windows_x64, build_windows_x86]

steps:
- name: Download binaries
uses: actions/download-artifact@v2

- name: Display structure of downloaded files
run: ls -R

0 comments on commit 4bb9078

Please sign in to comment.