mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
094f1a439c
Bumps [TriPSs/conventional-changelog-action](https://github.com/tripss/conventional-changelog-action) from 5.0.0 to 5.1.0.
- [Release notes](https://github.com/tripss/conventional-changelog-action/releases)
- [Changelog](https://github.com/TriPSs/conventional-changelog-action/blob/releases/v5/CHANGELOG.md)
- [Commits](25971cecba...dd734f74fc
)
---
updated-dependencies:
- dependency-name: TriPSs/conventional-changelog-action
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
97 lines
3.2 KiB
YAML
97 lines
3.2 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'src/**'
|
|
- 'packages/**'
|
|
- '.github/workflows/**'
|
|
|
|
jobs:
|
|
changelog:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
version: ${{ steps.changelog.outputs.version }}
|
|
body: ${{ steps.changelog.outputs.clean_changelog }}
|
|
tag: ${{ steps.changelog.outputs.tag }}
|
|
skipped: ${{ steps.changelog.outputs.skipped }}
|
|
steps:
|
|
- name: Checkout code 👋
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
- name: Create changelog ✍️
|
|
id: changelog
|
|
uses: TriPSs/conventional-changelog-action@dd734f74fce61a6e02f821ee1b5930bc79a23534
|
|
with:
|
|
github-token: ${{ secrets.github_token }}
|
|
skip-version-file: "true"
|
|
output-file: "false"
|
|
skip-commit: "true"
|
|
skip-on-empty: "true"
|
|
artifacts:
|
|
needs: changelog
|
|
if: ${{ needs.changelog.outputs.skipped == 'false' }}
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
COSIGN_KEY_LOCATION: "/tmp/cosign.key"
|
|
defaults:
|
|
run:
|
|
shell: pwsh
|
|
working-directory: ${{ github.workspace }}/src
|
|
steps:
|
|
- name: Checkout code 👋
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
- name: Install Go 🗳
|
|
uses: ./.github/workflows/composite/bootstrap-go
|
|
- name: Tag HEAD 😸
|
|
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: Install cosign 🔑
|
|
uses: sigstore/cosign-installer@9614fae9e5c5eddabb09f90a270fcb487c9f7149
|
|
with:
|
|
cosign-release: 'v1.4.0'
|
|
- name: Private Key 🔐
|
|
run: |
|
|
$PSDefaultParameterValues['Out-File:Encoding']='UTF8'
|
|
$env:COSIGN_KEY > $env:COSIGN_KEY_LOCATION
|
|
env:
|
|
COSIGN_KEY: ${{secrets.COSIGN_KEY}}
|
|
- name: Run GoReleaser 🚀
|
|
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8
|
|
with:
|
|
distribution: goreleaser
|
|
version: latest
|
|
args: build --clean
|
|
workdir: src
|
|
env:
|
|
COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }}
|
|
- name: Zip theme files 🤐
|
|
run: |
|
|
$compress = @{
|
|
Path = "../themes/*.omp.*"
|
|
CompressionLevel = "Fastest"
|
|
DestinationPath = "./dist/themes.zip"
|
|
}
|
|
Compress-Archive @compress
|
|
- name: Add hashes 🤫
|
|
run: |
|
|
Get-ChildItem ./dist -Exclude *.yaml,*.sig | Get-Unique |
|
|
Foreach-Object {
|
|
$zipHash = Get-FileHash $_.FullName -Algorithm SHA256
|
|
$zipHash.Hash | Out-File -Encoding 'UTF8' "./dist/$($_.Name).sha256"
|
|
}
|
|
shell: pwsh
|
|
- name: Release 🎓
|
|
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
|
|
with:
|
|
tag_name: ${{ needs.changelog.outputs.tag }}
|
|
body: ${{ needs.changelog.outputs.body }}
|
|
fail_on_unmatched_files: true
|
|
token: ${{ secrets.GH_PAT }}
|
|
files: |
|
|
src/dist/posh-*
|
|
src/dist/themes.*
|