tikz-trackschematic/.github/workflows/release.yaml

60 lines
1.9 KiB
YAML
Raw Normal View History

2022-02-14 17:23:37 +01:00
### github action to make and publish a release
##
name: release
2022-02-14 17:23:37 +01:00
## Controls when the workflow will run
on:
2022-02-14 17:23:37 +01:00
## Triggers the workflow on push or pull request events but only for the master branch
push:
tags:
- "v*"
2022-02-14 17:23:37 +01:00
## A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
2022-02-14 14:27:22 +01:00
release:
runs-on: ubuntu-latest
steps:
- name: "checkout"
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
uses: actions/checkout@v2
2022-02-14 17:23:37 +01:00
## create varibale ${{ steps.tag.outputs.tag }}
- name: "get tag"
id: tag
uses: dawidd6/action-get-tag@v1
with:
# Optionally strip `v` prefix
strip_v: false
- name: "create tikz-trackschematic package"
2022-02-15 00:11:01 +01:00
run: ./create-release.sh -v ${{ steps.tag.outputs.tag }}
- name: "create release"
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body_path: release-note-${{ steps.tag.outputs.tag }}.md
draft: false
prerelease: false
- name: "upload release asset"
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
2022-02-14 17:23:37 +01:00
asset_path: tikz-trackschematic-${{ steps.tag.outputs.tag }}.zip
asset_name: tikz-trackschematic-${{ steps.tag.outputs.tag }}.zip
asset_content_type: application/zip
- name: "publish release"
uses: StuYarrow/publish-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
id: ${{ steps.create_release.outputs.id }}