Skip to content

Commit 32c4492

Browse files
privaloopskasty
andauthored
feat(VAST-46): use github actions to generate releases (#38)
* VAST-46 complete changelog * feat(VAST-46): update changelog * feat(VAST-46): add github action * chore: remove duplicate changelog * chore: fake change to test * chore: delete fake changes --------- Co-authored-by: Marie Gossé <marie.gosse@ext.arte.tv>
1 parent ab2d400 commit 32c4492

File tree

5 files changed

+31
-801
lines changed

5 files changed

+31
-801
lines changed

.github/workflows/create-release.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "🏷️ Create release"
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
push:
8+
tags:
9+
- '*'
10+
11+
jobs:
12+
create-release:
13+
name: "Create release from CHANGELOG"
14+
runs-on: "ubuntu-latest"
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: taiki-e/create-gh-release-action@v1
19+
with:
20+
# (Required) GitHub token for creating GitHub Releases.
21+
token: ${{ secrets.GITHUB_TOKEN }}
22+
changelog: CHANGELOG.md

CHANGELOG.md

+9-27
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
<a name="1.1.4"></a>
22
## [1.1.4](#1.1.4) (2023-08-23)
33

4-
4+
### Bug Fixes
5+
* fix(VAST-54): Clear skip button interval on player destroy by @kasty (#45)
56

67
<a name="1.1.3"></a>
78
## [1.1.3](#1.1.3) (2023-07-20)
89

9-
10+
### Bug Fixes
11+
* fix(VAST-49): change target from saf13 to saf11 by @privaloops (#42)
12+
* fix(VAST-51): add try catch by @kasty (#43)
1013

1114
<a name="1.1.2"></a>
1215
## [1.1.2](#1.1.2) (2023-07-04)
@@ -23,6 +26,10 @@
2326
## [1.1.1](#1.1.1) (2023-07-03)
2427

2528

29+
### Bug Fixes
30+
31+
* fix([VAST-44](https://artetv.atlassian.net/browse/VAST-44)): skip linear mode if no mediafile (#36) ([6bdea00fbf7caf5ed5a7bd539a4b66063684a4b9](https://github.com/ArteGEIE/videojs-vast/commit/6bdea00fbf7caf5ed5a7bd539a4b66063684a4b9))
32+
2633

2734
<a name="1.1.0"></a>
2835
# [1.1.0](#1.1.0) (2023-06-27)
@@ -52,28 +59,3 @@
5259
* feat([VAST-39](https://artetv.atlassian.net/browse/VAST-39)): Deploy demo on Github Pages (#27) ([bb636255ba7a25a9782ebbd90c8bb81cf047114a](https://github.com/ArteGEIE/videojs-vast/commit/bb636255ba7a25a9782ebbd90c8bb81cf047114a))
5360

5461
* feat([VAST-43](https://artetv.atlassian.net/browse/VAST-43)): update env var names (#33) ([0883803c370edfb16058fb35899960a3fc03edeb](https://github.com/ArteGEIE/videojs-vast/commit/0883803c370edfb16058fb35899960a3fc03edeb))
55-
56-
57-
58-
59-
<a name="1.0.1"></a>
60-
## [1.0.1](#1.0.1) (2023-05-23)
61-
62-
63-
### Bug Fixes
64-
65-
* fix([VAST-42](https://artetv.atlassian.net/browse/VAST-42)): add @babel/node dep (#32) ([8741b95e9db2f30418f394be01e6af71ad36fafd](https://github.com/ArteGEIE/videojs-vast/commit/8741b95e9db2f30418f394be01e6af71ad36fafd))
66-
67-
68-
69-
### Features
70-
71-
* feat([VAST-35](https://artetv.atlassian.net/browse/VAST-35)): Add Complete VAST specs (4.3) (#26) ([24bad422ca6befd670e702a9f18bf15d13e10819](https://github.com/ArteGEIE/videojs-vast/commit/24bad422ca6befd670e702a9f18bf15d13e10819))
72-
73-
* feat([VAST-39](https://artetv.atlassian.net/browse/VAST-39)): Deploy demo on Github Pages (#27) ([bb636255ba7a25a9782ebbd90c8bb81cf047114a](https://github.com/ArteGEIE/videojs-vast/commit/bb636255ba7a25a9782ebbd90c8bb81cf047114a))
74-
75-
* feat([VAST-43](https://artetv.atlassian.net/browse/VAST-43)): update env var names (#33) ([0883803c370edfb16058fb35899960a3fc03edeb](https://github.com/ArteGEIE/videojs-vast/commit/0883803c370edfb16058fb35899960a3fc03edeb))
76-
77-
78-
79-

github-release.mjs

-118
This file was deleted.

0 commit comments

Comments
 (0)