Skip to content

Commit

Permalink
Update ubuntu-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
diegogslomp committed Aug 8, 2024
1 parent 1794d25 commit 0aba897
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ubuntu-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: ubuntu

on:
push:
branches: ["master"]
branches:
- "*"
paths-ignore:
- "dev/**"
- "docker-compose.yml"
Expand All @@ -12,7 +13,8 @@ on:
- "README.md"

pull_request:
branches: ["master"]
branches:
- "*"
paths-ignore:
- "dev/**"
- "docker-compose.yml"
Expand All @@ -26,6 +28,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Check out the repo
uses: actions/checkout@v3

- name: Download latest samba tar file
run: curl -o samba.tar.gz https://download.samba.org/pub/samba/samba-latest.tar.gz

- name: Build the Docker image
run: docker build . --file dockerfiles/ubuntu --tag samba-ubuntu

0 comments on commit 0aba897

Please sign in to comment.