Bump debug from 4.2.0 to 4.3.4 (#26) #44
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
# Build docker image from master and push it to GitHub packages | |
name: Docker | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: package docker | |
run: | | |
docker login docker.pkg.github.com --username Tallcraft --password ${{ secrets.GITHUB_TOKEN }} | |
docker build . --file Dockerfile --tag docker.pkg.github.com/tallcraft/tc-discord/discordbot:master | |
docker push docker.pkg.github.com/tallcraft/tc-discord/discordbot:master | |
env: | |
CI: true |