Skip to content

Commit 2f55e01

Browse files
committed
First pass at a release workflow
1 parent 10c0c86 commit 2f55e01

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

Diff for: .github/workflows/release.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'RELEASE_*'
7+
8+
jobs:
9+
create-release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
- name: Release
15+
uses: softprops/action-gh-release@v2
16+

Diff for: docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ RUN apt-get update && \
55
apt-get install -y pandoc && \
66
apt-get install -y build-essential && \
77
apt-get install -y cpanminus libtidy-dev libxml++2.6-dev libhtml-tidy-perl && \
8-
cpanm -n App::HTTPThis App::[email protected].0
8+
cpanm -n App::HTTPThis App::[email protected].1
99

0 commit comments

Comments
 (0)