mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
Create docker.yml
This commit is contained in:
parent
19010e7e59
commit
a829e3d0bd
1 changed files with 18 additions and 0 deletions
18
.github/workflows/docker.yml
vendored
Normal file
18
.github/workflows/docker.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Build Docker Image
|
||||
on:
|
||||
push:
|
||||
branches: ["typescript", "docker"]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Build and push Docker images
|
||||
uses: docker/build-push-action@v1
|
||||
with:
|
||||
username: keanucode
|
||||
password: ${{ secrets.DOCKER_PASS }}
|
||||
registry: docker.pkg.github.com
|
||||
repository: keanucode/travbot-v3
|
||||
tags: latest
|
Loading…
Reference in a new issue