-
-
Notifications
You must be signed in to change notification settings - Fork 6
29 lines (27 loc) · 672 Bytes
/
Copy pathsources.yml
File metadata and controls
29 lines (27 loc) · 672 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
name: sources
on:
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- .github/**
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
token: ${{ secrets.PAT_SUBMODULES }}
submodules: recursive
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}
path: |
${{github.workspace}}
${{github.workspace}}/.gitmodules
${{github.workspace}}/.gitignore
${{github.workspace}}/.clang-format
${{github.workspace}}/.clang-tidy