We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent befe2f0 commit beada63Copy full SHA for beada63
.github/workflows/docker-build.yml
@@ -1,9 +1,13 @@
1
name: cpp_tutorial CI and Release
2
3
on:
4
+ push:
5
+ branches: [ main, master, develop ] # Trigger on pushes to main branches
6
+ pull_request:
7
+ branches: [ main, master ] # Also trigger on PRs to main branches
8
push:
9
tags:
- - 'v*.*.*' # Only trigger workflow on version tags (e.g., v1.0.0, v1.0.1)
10
+ - 'v*.*.*' # Keep the version tag trigger for releases
11
12
jobs:
13
build:
Dockerfile
@@ -1,5 +1,5 @@
-# Use Ubuntu 22.04 as the base image
-FROM ubuntu:22.04
+# Use Ubuntu 24.04 as the base image
+FROM ubuntu:24.04
LABEL maintainer="Behnam Asadi <behnam.asadi@gmail.com>"
0 commit comments