Skip to content

Commit

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

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/debian --tag samba-debian

0 comments on commit b4ae693

Please sign in to comment.