mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-04 16:56:56 +00:00
20 lines
469 B
Plaintext
20 lines
469 B
Plaintext
###########################################################
|
|
# IMPORTANT -> Rename the file extension to ".yaml" (remove "_") to enable this
|
|
###########################################################
|
|
|
|
name: Self-Hosted Runner Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- <branch-name>
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: docker build python
|
|
run: |
|
|
docker build ./python/introduction/ -t python:1.0.0 |