Skip to content

Commit

Permalink
chore: update ps3netsrv to 20220813
Browse files Browse the repository at this point in the history
  • Loading branch information
shawly committed Oct 3, 2022
1 parent c277470 commit fd53b33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
# Publish `master` as Docker `edge` image.
branches:
- master
- develop

# Publish `v1.2.3` tags as releases.
tags:
Expand All @@ -17,7 +18,7 @@ env:
IMAGE_NAME: ps3netsrv
IMAGE_TITLE: ps3netsrv
IMAGE_DESCRIPTION: Docker container for ps3netsrv
APP_VERSION: "20220330"
APP_VERSION: "20220813"

jobs:
# Run tests.
Expand Down Expand Up @@ -58,7 +59,7 @@ jobs:
uses: docker/setup-buildx-action@v1

- name: Login to DockerHub
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
Expand Down Expand Up @@ -92,7 +93,7 @@ jobs:
builder: ${{ steps.buildx.outputs.name }}
context: .
platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v7,linux/arm/v6,linux/ppc64le
push: ${{ github.event_name != 'pull_request' }}
push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/master' }}
tags: ${{ steps.prep.outputs.tags }}
labels: |
org.opencontainers.image.title=$IMAGE_TITLE
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#

# Set alpine version
ARG ALPINE_VERSION=3.14
ARG ALPINE_VERSION=3.16

# Set vars for s6 overlay
ARG S6_OVERLAY_VERSION=v2.2.0.3
Expand Down

0 comments on commit fd53b33

Please sign in to comment.