Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/actions/docker-opensips-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ inputs:
description: Indicates whether to install OpenSIPS CLI as well
required: false
modules:
description: Space separated additional packets to install
description: Space-separated additional packages to install
required: false
build:
description: Indicate the build to use
description: Indicates the build to use
required: false
docker-username:
description: The Docker username to push the image with
description: The Docker username to push the image as
required: true
docker-token:
description: The Docker token used to authenticate
description: The Docker authentication token used
required: true

runs:
using: "composite"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: OpenSIPS/docker-opensips

Expand All @@ -51,7 +51,7 @@ runs:
run: make build 2>&1 | tee /tmp/build.log && grep "naming to docker.io" /tmp/build.log | awk -F'[ /]' '{print "DOCKER_TAG=" $5 "/" $6 }' >> $GITHUB_OUTPUT

- name: Log in to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ inputs.docker-username }}
password: ${{ inputs.docker-token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
dockerHubDescription:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6


- name: Docker Hub Description
Expand Down