-
-
Notifications
You must be signed in to change notification settings - Fork 6
36 lines (29 loc) · 986 Bytes
/
version.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Get Version Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
permissions:
# write permission is required to create a github release
contents: write
# write permission is required for autolabeler otherwise, read permission is required at least
pull-requests: write
strategy:
matrix:
configuration: [Release]
runs-on: windows-latest
steps:
- name: Find files
uses: DovnarAlexander/github-action-file-detection@master
with:
wildcard: '*.nukpkg'
exit_code_found: 1
exit_code_not_found: 0
base_path: ${{ github.workspace }}\src\bin\${{ matrix.configuration }}
- name: Print files
run: echo "${{ steps.ff.outputs.files }}"