-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (44 loc) · 1.7 KB
/
release.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
47
48
49
50
51
52
53
name: Create TLDR Release
on:
push:
branches:
- release
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Read version from VERSION.txt
id: get_version
run: |
cat VERSION.txt
VERSION=$(cat VERSION.txt)
echo "VERSION=${VERSION}" >> GITHUB_ENV
- name: Set Node.js environment
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Install deps
run: npm install
- name: Zip tldr-main directory
run: zip -r tldr-pages.zip tldr-main
- name: Create GitHub release
uses: actions/create-release@v1
id: create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
draft: false
prerelease: false
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./tldr-pages.zip
asset_name: tldr-pages.zip
asset_content_type: application/zip