Skip to content

Commit

Permalink
Add action for building base template
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubno committed Nov 13, 2023
1 parent 79dc537 commit 79c53ff
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/templates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build and push prepared templates

on:
push:
paths:
- 'sandboxes/**'
- '.github/workflows/templates.yml'
branches:
- main

permissions:
contents: read

jobs:
buildAndPublish:
defaults:
run:
working-directory: ./templates/base

name: Build and Push Images
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3

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

- name: Log in to Docker Hub
uses: docker/login-action
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/base:latest

0 comments on commit 79c53ff

Please sign in to comment.