mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-18 08:54:04 -08:00
6c45afa89a
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.2 to 3.1.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](2541b1294d...93ea575cb5
)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
name: Scoop
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
shell: pwsh
|
|
working-directory: ${{ github.workspace }}/packages/scoop
|
|
steps:
|
|
- name: Checkout code 👋
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
|
- name: Get release ⬇️
|
|
id: get_release
|
|
uses: bruceadams/get-release@3a8733307b85cd96d52772b037617bd63d99522e
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
- name: Update Template ✍️
|
|
run: |
|
|
$version = $env:GITHUB_REF.TrimStart("refs/tags/v")
|
|
./build.ps1 -Version $version
|
|
- name: Upload artifacts 🆙
|
|
uses: actions/github-script@7dff1a87643417cf3b95bb10b29f4c4bc60d8ebd
|
|
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 });
|
|
|
|
for (let file of await fs.readdir('./packages/scoop/dist')) {
|
|
console.log('uploading', file);
|
|
|
|
await github.rest.repos.uploadReleaseAsset({
|
|
owner, repo,
|
|
release_id: ${{ steps.get_release.outputs.id }},
|
|
name: file,
|
|
data: await fs.readFile(`./packages/scoop/dist/${file}`)
|
|
});
|
|
}
|