Bump ex_webrtc to 0.8.0. Fix versioning and release new versions. (#78) #10
Workflow file for this run
This file contains hidden or 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
name: Nexus CD | |
on: | |
push: | |
tags: | |
- "nexus-v*.*.*" | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build-publish-nexus-image: | |
name: "Build and publish Nexus image" | |
uses: ./.github/workflows/__CD__build-publish-image.yml | |
with: | |
app-name: nexus | |
deploy-nexus: | |
name: "Deploy Nexus image" | |
needs: build-publish-nexus-image | |
uses: ./.github/workflows/__CD__deploy-image.yml | |
with: | |
app-name: nexus | |
secrets: | |
ssh-host: ${{ secrets.NEXUS_SSH_HOST }} | |
ssh-username: ${{ secrets.NEXUS_SSH_USERNAME }} | |
ssh-priv-key: ${{ secrets.NEXUS_SSH_PRIV_KEY }} | |
secret-key-base: ${{ secrets.NEXUS_SECRET_KEY_BASE }} | |
phx-host: ${{ secrets.NEXUS_PHX_HOST }} | |
ice-port-range: ${{ secrets.NEXUS_ICE_PORT_RANGE }} | |
admin-username: ${{ secrets.NEXUS_ADMIN_USERNAME }} | |
admin-password: ${{ secrets.NEXUS_ADMIN_PASSWORD }} |