-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github/workflows: add support for building sipssert image
(cherry picked from commit 0959393)
- Loading branch information
1 parent
ec79246
commit 835075a
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Publish SIPSsert Image | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: OpenSIPS Version to publish | ||
required: true | ||
tag: | ||
description: OpenSIPS SIPssert Tag to use | ||
required: true | ||
|
||
jobs: | ||
|
||
publish: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Get the required OpenSIPS Modules | ||
id: fetch_modules | ||
run: echo "MODULES=$(cat .opensips.modules | tr '\n' ' ')" > $GITHUB_OUTPUT | ||
|
||
- name: Publish OpenSIPS SIPssert Docker image | ||
uses: OpenSIPS/docker-opensips/.github/actions/docker-opensips-publish@main | ||
with: | ||
version: ${{ github.event.inputs.version }} | ||
tag: ${{ github.event.inputs.tag }} | ||
cli: false | ||
build: nightly | ||
modules: ${{ steps.fetch_modules.outputs.MODULES }} | ||
docker-username: ${{ secrets.DOCKER_USERNAME }} | ||
docker-token: ${{ secrets.DOCKER_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
opensips-json-module | ||
opensips-mysql-module | ||
opensips-http-modules | ||
opensips-auth-modules | ||
opensips-presence-modules | ||
opensips-stir-shaken-module |