-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (30 loc) · 977 Bytes
/
build-and-push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Build and Publish Docker Image
on:
workflow_dispatch:
inputs:
release_tag:
description: "Release version to build"
required: true
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
PHOTON_VERSION=${{ github.event.inputs.release_tag }}
push: true
tags: yourdockerhubusername/photon:${{ github.event.inputs.release_tag }}
- name: Store the latest release
run: echo ${{ github.event.inputs.release_tag }} > .last_release
if: success()
continue-on-error: false