Skip to content

Fix wrong hardcoded default dmsg discovery #57

Fix wrong hardcoded default dmsg discovery

Fix wrong hardcoded default dmsg discovery #57

Workflow file for this run

name: Deploy
# only trigger on pull request closed events
on:
pull_request:
branches:
- develop
- master
types: [ closed ]
jobs:
deploy:
# this job will only run if the PR has been merged
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.USERNAME }}
password: ${{ secrets.TOKEN }}
- uses: actions/checkout@v3
- name: deploy to docker
run: |
chmod +x ./docker/scripts/docker-push.sh
./docker/scripts/docker-push.sh -t ${GITHUB_REF##*/} -p
shell: bash