mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
30 lines
747 B
YAML
30 lines
747 B
YAML
###########################################################
|
|
# Rename the file extension to ".yaml" (remove "_") to enable
|
|
###########################################################
|
|
|
|
name: Self-Hosted Runner Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- githubactions
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: docker build csharp
|
|
run: |
|
|
docker build ./c# -t aimvector/csharp:1.0.0
|
|
- name: docker build nodejs
|
|
run: |
|
|
docker build ./nodejs -t aimvector/nodejs:1.0.0
|
|
- name: docker build python
|
|
run: |
|
|
docker build ./python -t aimvector/python:1.0.0
|
|
- name: docker build golang
|
|
run: |
|
|
docker build ./golang -t aimvector/golang:1.0.0
|