Skip to content

Commit

Permalink
CI release test
Browse files Browse the repository at this point in the history
  • Loading branch information
NSGolova committed Aug 16, 2022
1 parent 7901aa2 commit 09d128c
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Build

on:
workflow_dispatch:
push:
branches: [ master, testCI ]
push:
branches: [ master ]
tags: v*
pull_request:
branches: [ master ]

jobs:
Build:
Expand Down Expand Up @@ -40,3 +42,10 @@ jobs:
with:
name: ${{ steps.Build.outputs.filename }}
path: ${{ steps.Build.outputs.artifactpath }}
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ./${{ steps.Build.outputs.filename }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

0 comments on commit 09d128c

Please sign in to comment.