generated from devcontainers/template-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (46 loc) · 1.4 KB
/
update-version.yaml
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
38
39
40
41
42
43
44
45
46
47
48
name: "Release"
on:
workflow_dispatch:
jobs:
changes:
name: features
runs-on: ubuntu-latest
outputs:
features: ${{ steps.changed_files.outputs.features }}
steps:
- uses: actions/checkout@v3
name: pull branch
with:
fetch-depth: 0
repository: ${{ github.event.pull_request.head.repo.full_name }}
# - run: git switch main
- name: find changed templates & features
id: changed_files
run: |
ls -la features/src
./build.sh GetFeatures -All -GithubOutput "$GITHUB_OUTPUT"
release-feature:
if: ${{ needs.changes.outputs.features }}
needs: [changes]
name: Test feature ${{ matrix.feature }}
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
feature: ${{ fromJSON(needs.changes.outputs.features) }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: "Cache: .nuke/temp, ~/.nuget/packages"
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: Install Node
uses: actions/setup-node@v3
- name: Run test for '${{ matrix.feature }}'
id: smoke_test
run: ./build.sh ReleaseFeature -Feature '${{ matrix.feature }}'