Skip to content

Commit

Permalink
Merge pull request #112 from DiouxX/DiouxX-patch-1
Browse files Browse the repository at this point in the history
Create docker-dev.yml
  • Loading branch information
DiouxX authored Mar 22, 2024
2 parents b97b32e + 7f7075b commit 6da5988
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/docker-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build & Publish Dev Docker image

on:
push:
branches:
- "dev"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5.3.0
with:
push: true
tags: diouxx/glpi:dev

0 comments on commit 6da5988

Please sign in to comment.