2019-03-13 04:14:30 -07:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-10-05 10:44:46 -07:00
|
|
|
- main
|
2021-04-03 03:57:32 -07:00
|
|
|
paths:
|
|
|
|
- 'src/**'
|
|
|
|
- 'packages/**'
|
2021-04-23 13:08:28 -07:00
|
|
|
- 'themes/**'
|
2019-03-13 04:14:30 -07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
2020-09-11 23:42:26 -07:00
|
|
|
version: ${{ steps.changelog.outputs.version }}
|
2020-10-25 05:20:17 -07:00
|
|
|
skipped: ${{ steps.changelog.outputs.skipped }}
|
2019-03-13 04:14:30 -07:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Create changelog
|
|
|
|
id: changelog
|
|
|
|
uses: TriPSs/conventional-changelog-action@v3
|
|
|
|
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
|
|
|
- name: Create Github Release
|
|
|
|
id: create_release
|
|
|
|
uses: actions/create-release@v1
|
|
|
|
if: ${{ steps.changelog.outputs.skipped == 'false' }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.github_token }}
|
|
|
|
with:
|
|
|
|
tag_name: ${{ steps.changelog.outputs.tag }}
|
|
|
|
release_name: ${{ steps.changelog.outputs.tag }}
|
|
|
|
body: ${{ steps.changelog.outputs.clean_changelog }}
|
|
|
|
artifacts:
|
|
|
|
needs: release
|
2020-10-25 05:20:17 -07:00
|
|
|
if: ${{ needs.release.outputs.skipped == 'false' }}
|
2019-03-13 04:14:30 -07:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2021-01-09 04:06:27 -08:00
|
|
|
goarch: [amd64]
|
2019-03-13 04:14:30 -07:00
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
2021-01-10 04:36:08 -08:00
|
|
|
goarch: arm
|
2019-03-13 04:14:30 -07:00
|
|
|
- os: windows-latest
|
2021-01-09 04:06:27 -08:00
|
|
|
goarch: 386
|
2019-03-13 04:14:30 -07:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-12-25 11:02:25 -08:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ${{ github.workspace }}/src
|
2020-10-27 04:10:22 -07:00
|
|
|
outputs:
|
|
|
|
hash_linux: ${{ steps.hash.outputs.hash_ubuntu-latest }}
|
|
|
|
hash_macos: ${{ steps.hash.outputs.hash_macos-latest }}
|
|
|
|
hash_windows: ${{ steps.hash.outputs.hash_windows-latest }}
|
2019-03-13 04:14:30 -07:00
|
|
|
steps:
|
|
|
|
- name: Install Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2021-02-27 07:24:12 -08:00
|
|
|
go-version: 1.16
|
2019-03-13 04:14:30 -07:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
2021-01-09 04:06:27 -08:00
|
|
|
- name: Asset name
|
|
|
|
id: artifact
|
|
|
|
run: |
|
|
|
|
if ($IsLinux) {
|
|
|
|
$artifact = "posh-linux-${{ matrix.goarch }}"
|
|
|
|
Write-Output "::set-output name=name::$($artifact)"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if ($IsMacOS) {
|
|
|
|
$artifact = "posh-darwin-${{ matrix.goarch }}"
|
|
|
|
Write-Output "::set-output name=name::$($artifact)"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if ($IsWindows) {
|
|
|
|
$artifact = "posh-windows-${{ matrix.goarch }}.exe"
|
|
|
|
Write-Output "::set-output name=name::$($artifact)"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
shell: pwsh
|
2019-03-13 04:14:30 -07:00
|
|
|
- name: Build
|
|
|
|
id: build
|
2021-01-09 04:06:27 -08:00
|
|
|
run: go build -o ${{ steps.artifact.outputs.name }} -ldflags="-X 'main.Version=${{ needs.release.outputs.version }}'"
|
2019-03-13 04:14:30 -07:00
|
|
|
env:
|
2021-01-09 04:06:27 -08:00
|
|
|
GOARCH: ${{ matrix.goarch }}
|
2020-10-27 04:10:22 -07:00
|
|
|
- name: Hash
|
|
|
|
id: hash
|
|
|
|
run: |
|
2021-01-09 04:06:27 -08:00
|
|
|
$fileHash = Get-FileHash ${{ steps.artifact.outputs.name }} -Algorithm SHA256
|
|
|
|
$fileHash.Hash | Out-File -Encoding 'UTF8' ${{ steps.artifact.outputs.name }}.sha256
|
2020-11-01 01:35:51 -07:00
|
|
|
Write-Output "::set-output name=hash_${{ matrix.os }}::$($fileHash.Hash)"
|
|
|
|
shell: pwsh
|
2019-03-13 04:14:30 -07:00
|
|
|
- name: Upload Release Asset
|
|
|
|
id: upload-release-asset
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ needs.release.outputs.upload_url }}
|
2021-01-09 04:06:27 -08:00
|
|
|
asset_path: src/${{ steps.artifact.outputs.name }}
|
|
|
|
asset_name: ${{ steps.artifact.outputs.name }}
|
2020-10-27 04:10:22 -07:00
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
- name: Upload Hash Asset
|
|
|
|
id: upload-hash-asset
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ needs.release.outputs.upload_url }}
|
2021-01-09 04:06:27 -08:00
|
|
|
asset_path: src/${{ steps.artifact.outputs.name }}.sha256
|
|
|
|
asset_name: ${{ steps.artifact.outputs.name }}.sha256
|
2020-10-27 04:10:22 -07:00
|
|
|
asset_content_type: text/plain
|
2020-11-01 04:46:24 -08:00
|
|
|
themes:
|
|
|
|
needs: release
|
|
|
|
if: ${{ needs.release.outputs.skipped == 'false' }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
hash_themes: ${{ steps.hash.outputs.hash_themes }}
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: pwsh
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Zip theme files
|
|
|
|
run: |
|
|
|
|
$compress = @{
|
|
|
|
Path = "themes\*.json"
|
|
|
|
CompressionLevel = "Fastest"
|
|
|
|
DestinationPath = "themes.zip"
|
|
|
|
}
|
|
|
|
Compress-Archive @compress
|
|
|
|
- name: Hash
|
|
|
|
id: hash
|
|
|
|
run: |
|
|
|
|
$fileHash = Get-FileHash themes.zip -Algorithm SHA256
|
|
|
|
$fileHash.Hash | Out-File -Encoding 'UTF8' themes.zip.sha256
|
2020-11-01 08:22:00 -08:00
|
|
|
Write-Output "::set-output name=hash_themes::$($fileHash.Hash)"
|
2020-11-01 04:46:24 -08:00
|
|
|
- name: Upload Themes
|
|
|
|
id: upload-themes
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ needs.release.outputs.upload_url }}
|
|
|
|
asset_path: themes.zip
|
|
|
|
asset_name: themes.zip
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
- name: Upload Themes Hash
|
|
|
|
id: upload-hash-asset
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ needs.release.outputs.upload_url }}
|
|
|
|
asset_path: themes.zip.sha256
|
|
|
|
asset_name: themes.zip.sha256
|
|
|
|
asset_content_type: text/plain
|
2020-11-07 10:09:29 -08:00
|
|
|
homebrew:
|
|
|
|
needs: release
|
|
|
|
if: ${{ needs.release.outputs.skipped == 'false' }}
|
|
|
|
runs-on: ubuntu-latest
|
2020-11-07 11:01:59 -08:00
|
|
|
env:
|
|
|
|
GH_KEY: ${{ secrets.GH_PAT }}
|
2020-11-07 10:09:29 -08:00
|
|
|
steps:
|
|
|
|
- name: Push Version
|
|
|
|
run: |
|
2020-11-07 11:01:59 -08:00
|
|
|
curl -XPOST -u "jandedobbeleer:$GH_KEY" \
|
2020-11-07 10:09:29 -08:00
|
|
|
-H "Accept: application/vnd.github.everest-preview+json" \
|
|
|
|
-H "Content-Type: application/json" https://api.github.com/repos/jandedobbeleer/homebrew-oh-my-posh/actions/workflows/release.yml/dispatches \
|
|
|
|
--data '{"ref": "main", "inputs": {"version": "${{ needs.release.outputs.version }}"} }'
|
2020-09-11 23:42:26 -07:00
|
|
|
powershell:
|
|
|
|
needs: [release, artifacts]
|
2020-10-25 05:20:17 -07:00
|
|
|
if: ${{ needs.release.outputs.skipped == 'false' }}
|
2020-09-11 23:42:26 -07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: pwsh
|
2020-10-15 04:19:08 -07:00
|
|
|
working-directory: ${{ github.workspace }}/packages/powershell/oh-my-posh
|
2020-09-11 23:42:26 -07:00
|
|
|
env:
|
|
|
|
PSGALLERY_KEY: ${{ secrets.PSGALLERY_KEY }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Pack and push
|
2020-10-30 23:49:57 -07:00
|
|
|
run: ./deploy.ps1 -BinVersion ${{ needs.release.outputs.version }} -ModuleVersion ${{ needs.release.outputs.version }} -Repository PSGallery -RepositoryAPIKey $env:PSGALLERY_KEY
|
2020-10-27 04:10:22 -07:00
|
|
|
scoop:
|
2020-11-20 00:56:52 -08:00
|
|
|
needs: [release, artifacts]
|
2020-10-27 04:10:22 -07:00
|
|
|
if: ${{ needs.release.outputs.skipped == 'false' }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: pwsh
|
|
|
|
working-directory: ${{ github.workspace }}/packages/scoop
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Update Template
|
2020-11-20 00:56:52 -08:00
|
|
|
run: ./build.ps1 -Version ${{ needs.release.outputs.version }}
|
2020-10-27 04:10:22 -07:00
|
|
|
- name: Upload Scoop JSON
|
|
|
|
id: upload-scoop-json
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ needs.release.outputs.upload_url }}
|
2020-11-01 04:57:57 -08:00
|
|
|
asset_path: ${{ github.workspace }}/packages/scoop/oh-my-posh.json
|
|
|
|
asset_name: oh-my-posh.json
|
2020-10-27 04:10:22 -07:00
|
|
|
asset_content_type: text/plain
|
2020-11-20 00:56:52 -08:00
|
|
|
- name: Upload Scoop Archive
|
2020-10-27 04:10:22 -07:00
|
|
|
id: upload-scoop-post-install
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ needs.release.outputs.upload_url }}
|
2020-11-20 00:56:52 -08:00
|
|
|
asset_path: ${{ github.workspace }}/packages/scoop/posh-windows-wsl-amd64.7z
|
|
|
|
asset_name: posh-windows-wsl-amd64.7z
|
|
|
|
asset_content_type: application/octet-stream
|
2020-11-20 06:48:36 -08:00
|
|
|
- name: Upload Scoop Archive Hash
|
|
|
|
id: upload-scoop-post-install-hash
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ needs.release.outputs.upload_url }}
|
|
|
|
asset_path: ${{ github.workspace }}/packages/scoop/posh-windows-wsl-amd64.7z.sha256
|
|
|
|
asset_name: posh-windows-wsl-amd64.7z.sha256
|
|
|
|
asset_content_type: text/plain
|
2021-01-28 12:53:45 -08:00
|
|
|
inno:
|
|
|
|
needs: [release, artifacts]
|
|
|
|
if: ${{ needs.release.outputs.skipped == 'false' }}
|
|
|
|
runs-on: windows-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: pwsh
|
|
|
|
working-directory: ${{ github.workspace }}/packages/inno
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build installer
|
|
|
|
run: ./build.ps1 -Version ${{ needs.release.outputs.version }}
|
|
|
|
- name: Upload Inno Installer
|
|
|
|
id: upload-inno-installer
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ needs.release.outputs.upload_url }}
|
|
|
|
asset_path: ${{ github.workspace }}/packages/inno/Output/install.exe
|
|
|
|
asset_name: install.exe
|
|
|
|
asset_content_type: text/plain
|
|
|
|
- name: Upload Inno Installer Hash
|
|
|
|
id: upload-inno-installer-hash
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ needs.release.outputs.upload_url }}
|
|
|
|
asset_path: ${{ github.workspace }}/packages/inno/Output/install.exe.sha256
|
|
|
|
asset_name: install.exe.sha256
|
|
|
|
asset_content_type: text/plain
|