File tree Expand file tree Collapse file tree 3 files changed +42
-2
lines changed
Expand file tree Collapse file tree 3 files changed +42
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Linux AMD64 image build
2+
3+ on :
4+ push :
5+ branches :
6+ - " 2e"
7+
8+ jobs :
9+ images-linux-amd64 :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@master
13+ - name : Build and push Linux AMD64 images
14+ working-directory : build
15+ run : |
16+ docker login -u $env:USER -p $env:TOKEN
17+ ./build.ps1 -Images
18+ env :
19+ USER : ${{ secrets.DOCKER_HUB_USERNAME }}
20+ TOKEN : ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
Original file line number Diff line number Diff line change 1+ name : Windows LTSC2019 image build
2+
3+ on :
4+ push :
5+ branches :
6+ - " 2e"
7+
8+ jobs :
9+ images-windows-ltsc2019 :
10+ runs-on : windows-2019
11+ steps :
12+ - uses : actions/checkout@master
13+ - name : Build and push Windows LTSC2019 images
14+ working-directory : build
15+ run : |
16+ docker login -u $env:USER -p $env:TOKEN
17+ ./build.ps1 -Images
18+ env :
19+ USER : ${{ secrets.DOCKER_HUB_USERNAME }}
20+ TOKEN : ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
Original file line number Diff line number Diff line change 66 - " 2e"
77
88jobs :
9- images-ltsc2022 :
9+ images-windows- ltsc2022 :
1010 runs-on : windows-2022
1111 steps :
1212 - uses : actions/checkout@master
13- - name : Build and push Windows images
13+ - name : Build and push Windows LTSC2022 images
1414 working-directory : build
1515 run : |
1616 docker login -u $env:USER -p $env:TOKEN
You can’t perform that action at this time.
0 commit comments