Skip to content

Commit 5f776a2

Browse files
authored
v2.1.2 (#34)
Major updates * Using latest base image Build updates * Adding workflow_dispatch trigger * Adding workflow cleanup action
1 parent 30d55b4 commit 5f776a2

File tree

5 files changed

+24
-2
lines changed

5 files changed

+24
-2
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- 'main'
77
tags-ignore:
88
- '**'
9+
workflow_dispatch:
910

1011
jobs:
1112
test:

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: publish
33
on:
44
release:
55
types: [published]
6+
workflow_dispatch:
67

78
jobs:
89
publish:
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: delete-workflow-runs
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
days:
7+
description: 'Number of days.'
8+
required: true
9+
default: 60
10+
11+
jobs:
12+
del_old_runs:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Delete old workflow runs
16+
uses: bencgreen/delete-workflow-runs@main
17+
with:
18+
token: ${{ secrets.GITHUB_TOKEN }}
19+
repository: ${{ github.repository }}
20+
retain_days: ${{ github.event.inputs.days }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bcgdesign/nginx:alpine3.13-2.1.1
1+
FROM bcgdesign/nginx:alpine3.13-2.1.2
22

33
LABEL maintainer="Ben Green <ben@bcgdesign.com>" \
44
org.label-schema.name="Nginx Proxy" \

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.1
1+
2.1.2

0 commit comments

Comments
 (0)