chore(deps): bump urllib3 from 2.2.1 to 2.2.2 #123
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
name: Docker image build on tag | |
on: push | |
jobs: | |
build: | |
name: Push Docker image to GitHub package container registry | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- uses: docker/build-push-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
repository: greenstatic/bigbluebutton-exporter | |
tag_with_ref: true | |
push: ${{ startsWith(github.ref, 'refs/tags/') }} |