-
Notifications
You must be signed in to change notification settings - Fork 11
41 lines (36 loc) · 1.22 KB
/
publish-tar.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
name: Publish Tar
on:
workflow_dispatch:
inputs:
version:
description: 'Version to publish'
required: true
default: 'latest'
push:
branches:
- main
jobs:
publish-tar:
permissions: write-all
name: Publish tar as release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Archive
run: tar -cf archive.tar ./*
- name: Output version from file to variable
id: version
run: echo "::set-output name=version::$(cat version)"
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: archive.tar
tag_name: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version || steps.version.outputs.version }}
name: Release for Zen - ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version || steps.version.outputs.version }}
body: |
### Release ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version || steps.version.outputs.version }}
- sha: ${{ github.sha }}