Windows Terminal Support #265
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#---------------------------------# | |
# general configuration # | |
#---------------------------------# | |
name: Build Cmder | |
# Controls when the action will run. Triggers the workflow on push or pull request events but only for the main branch | |
on: | |
push: | |
branches: [ "master" ] | |
tags: | |
- "v*" | |
pull_request: | |
branches: [ "master" ] | |
#---------------------------------# | |
# environment configuration # | |
#---------------------------------# | |
env: | |
# Path to the root of the Cmder project. | |
CMDER_ROOT: ${{ github.workspace }} | |
permissions: | |
contents: read | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build: | |
name: Build Project | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
discussions: write | |
steps: | |
- name: Check out repository code (Action from GitHub) | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Add MSBuild to PATH | |
uses: microsoft/setup-msbuild@v1 | |
- name: Build Cmder Launcher | |
shell: pwsh | |
working-directory: scripts | |
run: .\build.ps1 -Compile -verbose | |
- name: Pack the built files with Windows Terminal | |
shell: pwsh | |
working-directory: scripts | |
run: .\pack.ps1 -verbose -emulator windows-terminal | |
- name: Pack the built files with ConEmu | |
shell: pwsh | |
working-directory: scripts | |
run: .\pack.ps1 -verbose -emulator conemu | |
- name: Upload artifact (cmder_wt.zip) | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/cmder_wt.zip | |
name: cmder_wt.zip | |
if-no-files-found: error | |
- name: Upload artifact (cmder_wt.7z) | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/cmder_wt.7z | |
name: cmder_wt.7z | |
- name: Upload artifact (cmder_wt_mini.zip) | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/cmder_wt_mini.zip | |
name: cmder_wt_mini.zip | |
- name: Upload artifact (cmder.zip) | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/cmder.zip | |
name: cmder.zip | |
if-no-files-found: error | |
- name: Upload artifact (cmder.7z) | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/cmder.7z | |
name: cmder.7z | |
- name: Upload artifact (cmder_mini.zip) | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/cmder_mini.zip | |
name: cmder_mini.zip | |
- name: Upload artifact (hashes.txt) | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/hashes.txt | |
name: hashes.txt | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
build/cmder.zip | |
build/cmder_wt.zip | |
build/cmder.7z | |
build/cmder_wt.7z | |
build/cmder_mini.zip | |
build/cmder_wt_mini.zip | |
build/hashes.txt | |
draft: true | |
generate_release_notes: true | |
if: startsWith(github.ref, 'refs/tags/') |