Skip to content

Commit

Permalink
v1.0.19 (#21)
Browse files Browse the repository at this point in the history
Minor updates
* Using latest base image

Build updates
* Adding update readme action
* Updating build push action
  • Loading branch information
bfren authored Feb 13, 2023
1 parent 366cd81 commit 90ac402
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
build-args: |
BF_IMAGE=${{ env.REPOSITORY_NAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
build-args: |
BF_IMAGE=${{ env.REPOSITORY_NAME }}
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/update-readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: update-readme

on:
release:
types: [published]
workflow_dispatch:

jobs:
update_readme:
runs-on: ubuntu-latest
steps:
-
name: Get repository name
run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | sed "s/bfren\/docker-//")" >> $GITHUB_ENV
shell: bash
-
name: Checkout code
uses: actions/checkout@v3
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Update repo description with README.md
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: bfren/${{ env.REPOSITORY_NAME }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/node:node16-2.1.9
FROM bfren/node:node16-2.1.10

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-send"

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.18
1.0.19

0 comments on commit 90ac402

Please sign in to comment.