oh-my-posh/.github/workflows/release.yml

108 lines
4.1 KiB
YAML
Raw Normal View History

2019-03-13 04:14:30 -07:00
name: Release
on:
push:
branches:
2020-10-05 10:44:46 -07:00
- main
paths:
- 'src/**'
- 'packages/**'
2021-12-01 22:54:49 -08:00
- '.github/workflows/**'
2019-03-13 04:14:30 -07:00
jobs:
2021-10-06 12:43:18 -07:00
changelog:
runs-on: macos-latest
2019-03-13 04:14:30 -07:00
outputs:
2020-09-11 23:42:26 -07:00
version: ${{ steps.changelog.outputs.version }}
2021-10-06 12:43:18 -07:00
body: ${{ steps.changelog.outputs.clean_changelog }}
tag: ${{ steps.changelog.outputs.tag }}
2020-10-25 05:20:17 -07:00
skipped: ${{ steps.changelog.outputs.skipped }}
2019-03-13 04:14:30 -07:00
steps:
2021-10-06 12:43:18 -07:00
- name: Checkout code 👋
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2021-10-06 12:43:18 -07:00
- name: Create changelog ✍️
2019-03-13 04:14:30 -07:00
id: changelog
uses: TriPSs/conventional-changelog-action@3c4970b6573374889b897403d2f1278c395ea0df
2019-03-13 04:14:30 -07:00
with:
github-token: ${{ secrets.github_token }}
skip-version-file: "true"
output-file: "false"
skip-commit: "true"
2020-10-25 05:20:17 -07:00
skip-on-empty: "true"
2019-03-13 04:14:30 -07:00
artifacts:
2021-10-06 12:43:18 -07:00
needs: changelog
if: ${{ needs.changelog.outputs.skipped == 'false' }}
runs-on: windows-latest
2020-09-11 23:42:26 -07:00
defaults:
run:
2021-12-02 13:42:38 -08:00
shell: pwsh
2021-10-06 12:43:18 -07:00
working-directory: ${{ github.workspace }}/src
2020-10-27 04:10:22 -07:00
steps:
2021-10-06 12:43:18 -07:00
- name: Checkout code 👋
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Install Go 🗳
uses: ./.github/workflows/composite/bootstrap-go
2021-10-06 12:43:18 -07:00
- name: Tag HEAD 😸
2023-03-21 06:10:53 -07:00
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git tag ${{ needs.changelog.outputs.tag }}
- name: Prerequisites 🔐
2021-12-02 13:42:38 -08:00
run: |
$PSDefaultParameterValues['Out-File:Encoding']='UTF8'
$shaSigningKeyLocation = Join-Path -Path $env:RUNNER_TEMP -ChildPath sha_signing_key.pem
$env:SIGNING_KEY > $shaSigningKeyLocation
Write-Output "SHA_SIGNING_KEY_LOCATION=$shaSigningKeyLocation" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
2024-11-15 04:45:02 -08:00
# install code signing dlib
nuget.exe install Microsoft.Trusted.Signing.Client -Version 1.0.60 -ExcludeVersion -OutputDirectory $env:RUNNER_TEMP
Write-Output "SIGNTOOLDLIB=$env:RUNNER_TEMP/Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# requires Windows Dev Kit 10.0.22621.0
2024-11-15 04:45:02 -08:00
$signtool = 'C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/signtool.exe'
Write-Output "SIGNTOOL=$signtool" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# openssl
$openssl = 'C:/Program Files/Git/usr/bin/openssl.exe'
Write-Output "OPENSSL=$openssl" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
2021-12-02 13:42:38 -08:00
env:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
2021-10-06 12:43:18 -07:00
- name: Run GoReleaser 🚀
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf
2021-10-06 12:43:18 -07:00
with:
distribution: goreleaser
2024-11-04 05:22:07 -08:00
version: v2.3.2
args: release --clean --skip publish
2021-10-06 12:43:18 -07:00
workdir: src
env:
2024-11-15 04:45:02 -08:00
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
2021-10-06 12:43:18 -07:00
- name: Zip theme files 🤐
run: |
$compress = @{
Path = "../themes/*.omp.*"
2021-10-06 12:43:18 -07:00
CompressionLevel = "Fastest"
DestinationPath = "./dist/themes.zip"
}
Compress-Archive @compress
- name: Add hashes 🤫
run: |
2021-12-03 04:51:35 -08:00
Get-ChildItem ./dist -Exclude *.yaml,*.sig | Get-Unique |
2021-10-06 12:43:18 -07:00
Foreach-Object {
$zipHash = Get-FileHash $_.FullName -Algorithm SHA256
$zipHash.Hash | Out-File -Encoding 'UTF8' "./dist/$($_.Name).sha256"
}
- name: Release 🎓
uses: softprops/action-gh-release@01570a1f39cb168c169c802c3bceb9e93fb10974
2021-10-06 12:43:18 -07:00
with:
tag_name: ${{ needs.changelog.outputs.tag }}
2021-11-28 10:48:56 -08:00
body: ${{ needs.changelog.outputs.body }}
2021-10-06 12:43:18 -07:00
fail_on_unmatched_files: true
token: ${{ secrets.GH_PAT }}
files: |
src/dist/posh-*
src/dist/themes.*
2024-07-04 02:33:01 -07:00
src/dist/checksums.*