Skip to content

Commit

Permalink
Build template-ws docker image with gh-action
Browse files Browse the repository at this point in the history
  • Loading branch information
j3soon committed Sep 22, 2023
1 parent 60c31c2 commit 863db53
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/build-template-ws.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build Docker Image for template-ws

on:
push:
branches:
- "master"
paths:
- .github/workflows/build-template-ws.yaml
- template_ws/Dockerfile

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Docker meta
id: meta
# Ref: https://github.com/docker/metadata-action
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_USERNAME }}/ros2-template-ws
tags: |
type=raw,value=latest
type=raw,value={{date 'YYYYMMDD'}}
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: template_ws/docker
push: true
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit 863db53

Please sign in to comment.