-
Notifications
You must be signed in to change notification settings - Fork 29
35 lines (31 loc) · 1 KB
/
release.yaml
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
# For release build - release that - Github action tag and deploy it on Google Cloud Storage
name: Release
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
# Token is used to push on main branch
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Semantic Release
id: semantic
uses: cycjimmy/[email protected]
with:
semantic_version: 17.3.7
extra_plugins: |
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}