Skip to content

Commit

Permalink
v2.1.2 (#34)
Browse files Browse the repository at this point in the history
Major updates
* Using latest base image

Build updates
* Adding workflow_dispatch trigger
* Adding workflow cleanup action
  • Loading branch information
bfren authored Apr 25, 2021
1 parent 30d55b4 commit 5f776a2
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- 'main'
tags-ignore:
- '**'
workflow_dispatch:

jobs:
test:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: publish
on:
release:
types: [published]
workflow_dispatch:

jobs:
publish:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/workflow-cleanup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: delete-workflow-runs

on:
workflow_dispatch:
inputs:
days:
description: 'Number of days.'
required: true
default: 60

jobs:
del_old_runs:
runs-on: ubuntu-latest
steps:
- name: Delete old workflow runs
uses: bencgreen/delete-workflow-runs@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
retain_days: ${{ github.event.inputs.days }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bcgdesign/nginx:alpine3.13-2.1.1
FROM bcgdesign/nginx:alpine3.13-2.1.2

LABEL maintainer="Ben Green <ben@bcgdesign.com>" \
org.label-schema.name="Nginx Proxy" \
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.1
2.1.2

0 comments on commit 5f776a2

Please sign in to comment.