Skip to content

Commit

Permalink
A build action gets started
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed Jul 30, 2024
1 parent 39a4387 commit 78ddb0f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-u18surge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Ubuntu18 Image
on:
workflow_dispatch:

defaults:
run:
shell: bash

jobs:
build_image:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3


- name: Build and push
uses: docker/build-push-action@v6
with:
push: false
file: ubuntu-18-upgrade-cmake/Dockerfile
# tags: user/app:latest

0 comments on commit 78ddb0f

Please sign in to comment.