Skip to content

Commit

Permalink
add example workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marcel-dempers committed Oct 1, 2023
1 parent 19d2d16 commit 3918c32
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/self-hosted-runner.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3918c32

Please sign in to comment.