mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
18 lines
486 B
YAML
18 lines
486 B
YAML
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/travbot-v3
|
|
tags: latest
|