2024-12-25 23:28:14 +00:00
|
|
|
name: Build Docker Image on Commit
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
tags:
|
|
|
|
- '!' # Exclude tags
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-publish:
|
2024-12-25 23:29:32 +00:00
|
|
|
runs-on: [test-env] # Change the runner label to 'test-env'
|
2024-12-25 23:28:14 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2024-12-25 23:29:32 +00:00
|
|
|
- name: Say Hello World
|
|
|
|
run: |
|
|
|
|
echo "Hello World" # This will log "Hello World" to the GitHub Actions logs
|