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

97 lines
3.2 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:
2019-03-13 04:14:30 -07:00
runs-on: ubuntu-latest
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@b4ffde65f46336ab88eb53be808477a3936bae11
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@05fc06b05ff372d7a3890bfe625d42a0d97844de
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' }}
2020-09-11 23:42:26 -07:00
runs-on: ubuntu-latest
2021-12-02 13:42:38 -08:00
env:
COSIGN_KEY_LOCATION: "/tmp/cosign.key"
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@b4ffde65f46336ab88eb53be808477a3936bae11
- 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 }}
2021-12-02 13:42:38 -08:00
- name: Install cosign 🔑
uses: sigstore/cosign-installer@9614fae9e5c5eddabb09f90a270fcb487c9f7149
2021-12-02 13:42:38 -08:00
with:
2021-12-08 04:52:14 -08:00
cosign-release: 'v1.4.0'
2021-12-02 13:42:38 -08:00
- name: Private Key 🔐
run: |
$PSDefaultParameterValues['Out-File:Encoding']='UTF8'
$env:COSIGN_KEY > $env:COSIGN_KEY_LOCATION
env:
COSIGN_KEY: ${{secrets.COSIGN_KEY}}
2021-10-06 12:43:18 -07:00
- name: Run GoReleaser 🚀
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8
2021-10-06 12:43:18 -07:00
with:
distribution: goreleaser
version: latest
args: build --clean
2021-10-06 12:43:18 -07:00
workdir: src
2021-12-02 13:42:38 -08:00
env:
COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }}
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"
}
2021-01-29 10:50:11 -08:00
shell: pwsh
2021-10-06 12:43:18 -07:00
- name: Release 🎓
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
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.*