Skip to content

Commit f28f4b4

Browse files
committedDec 29, 2024·
Add 2025 build
1 parent 665aa72 commit f28f4b4

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Windows LTSC2025 image build
2+
3+
on:
4+
push:
5+
branches:
6+
- "2e"
7+
paths:
8+
- "images/**"
9+
- "build/**"
10+
- ".github/workflows/images-windows-ltsc2025.yaml"
11+
12+
jobs:
13+
images-windows-ltsc2025:
14+
runs-on: windows-2025
15+
steps:
16+
- uses: actions/checkout@master
17+
- name: Build and push Windows LTSC2025 images
18+
working-directory: build
19+
shell: pwsh
20+
run: |
21+
docker login -u $env:USER -p $env:TOKEN
22+
./build.ps1 -Images
23+
env:
24+
USER: ${{ secrets.DOCKER_HUB_USERNAME }}
25+
TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)
Please sign in to comment.