-
-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (32 loc) · 766 Bytes
/
Copy pathdev-package.yml
File metadata and controls
37 lines (32 loc) · 766 Bytes
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
37
name: Development Package
on:
push:
paths-ignore:
- '*.md'
branches-ignore:
- 'dependabot/**'
jobs:
package:
name: Deploy package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup .NET
uses: fast-actions/setup-dotnet@v1
with:
sdk-version: '8.x'
- name: Test generator
run: |
cd Generator
dotnet build -c Release
dotnet test -c Release --no-build --verbosity normal
- name: Create dev package
uses: Hertzole/upm-package@master
id: upm-release
with:
branch-name: 'dev-package'
remove-tests: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}