forked from pengovbr/mod-sei-protocolo-integrado
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (41 loc) · 1.41 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Publish Release
on:
push:
tags:
- "*"
jobs:
build:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: "true"
- name: Distribution
run: make dist
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF##*/}
shell: bash
- 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: ${{ steps.get_version.outputs.VERSION }}
release_name: mod-sei-protocolo-integrado (versão ${{ steps.get_version.outputs.VERSION }})
body_path: dist/NOTAS_VERSAO.md
draft: false
prerelease: true
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/${{github.event.repository.name}}-${{ steps.get_version.outputs.VERSION }}.zip
asset_name: ${{github.event.repository.name}}-${{ steps.get_version.outputs.VERSION }}.zip
asset_content_type: application/zip