2021-10-06 12:43:18 -07:00
|
|
|
name: Scoop
|
|
|
|
on:
|
2022-10-19 03:49:26 -07:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
version:
|
|
|
|
description: 'The latest version'
|
|
|
|
required: true
|
2022-10-19 11:08:00 -07:00
|
|
|
release:
|
|
|
|
description: 'The release id'
|
|
|
|
required: true
|
2021-10-06 12:43:18 -07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: pwsh
|
|
|
|
working-directory: ${{ github.workspace }}/packages/scoop
|
|
|
|
steps:
|
|
|
|
- name: Checkout code 👋
|
2024-05-06 17:51:52 -07:00
|
|
|
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
|
2021-10-06 12:43:18 -07:00
|
|
|
- name: Update Template ✍️
|
|
|
|
run: |
|
2022-10-19 11:08:00 -07:00
|
|
|
./build.ps1 -Version ${{ github.event.inputs.version }}
|
2021-10-06 12:43:18 -07:00
|
|
|
- name: Upload artifacts 🆙
|
2023-11-19 16:14:52 -08:00
|
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
|
2021-10-06 12:43:18 -07:00
|
|
|
with:
|
|
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
script: |
|
|
|
|
console.log('environment', process.versions);
|
|
|
|
|
|
|
|
const fs = require('fs').promises;
|
|
|
|
|
|
|
|
const { repo: { owner, repo }, sha } = context;
|
|
|
|
console.log({ owner, repo, sha });
|
|
|
|
|
2022-10-19 03:49:26 -07:00
|
|
|
await github.rest.repos.uploadReleaseAsset({
|
|
|
|
owner, repo,
|
2022-10-19 11:08:00 -07:00
|
|
|
release_id: ${{ github.event.inputs.release }},
|
|
|
|
name: 'oh-my-posh.json',
|
2022-10-19 03:49:26 -07:00
|
|
|
data: await fs.readFile('./packages/scoop/dist/oh-my-posh.json')
|
|
|
|
});
|