-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6aed301
commit ddd11f3
Showing
3 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Действие, формирующее релиз | ||
name: Release | ||
|
||
# Активация по ручному вызову | ||
on: | ||
push: | ||
branches: [ master ] | ||
paths: .release/Release.md | ||
|
||
# Содержит одно задание build с названием Project release с несколькими шагами | ||
jobs: | ||
build: | ||
name: Project release | ||
runs-on: ubuntu-latest | ||
|
||
# Константы, используемые далее по тексту | ||
env: | ||
PROJ: ${{ github.event.repository.name }} | ||
TAG: '1.0' | ||
|
||
steps: | ||
# Проверка состава репозитория (без анализа, как может показаться) | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
# Формирование релиза | ||
- name: Create release | ||
id: create_release | ||
uses: ncipollo/release-action@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag: v${{ env.TAG }} | ||
name: ${{ env.PROJ }} v ${{ env.TAG }} | ||
bodyFile: .release/Release.md | ||
draft: false | ||
prerelease: false | ||
|
||
# Загрузка бинарных файлов в релиз | ||
- name: Upload release asset | ||
id: upload-release-asset | ||
uses: actions/github-script@v4 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const fs = require('fs').promises; | ||
const { repo: { owner, repo }, sha } = context; | ||
await fs.unlink (`./.release/Release.md`); | ||
for (let file of await fs.readdir('./.release')){ | ||
await github.repos.uploadReleaseAsset({ | ||
owner, repo, | ||
release_id: ${{ steps.create_release.outputs.id }}, | ||
name: file, | ||
data: await fs.readFile(`./.release/${file}`) | ||
}); | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
_Changes for v 1.0_: | ||
- Initial release as a stand-alone application |