mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
add example workflow
This commit is contained in:
parent
19d2d161b7
commit
3918c32e67
29
.github/workflows/self-hosted-runner.yaml
vendored
Normal file
29
.github/workflows/self-hosted-runner.yaml
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
###########################################################
|
||||
# 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
|
Loading…
x
Reference in New Issue
Block a user