Skip to content

Commit

Permalink
Update workflow.yml
Browse files Browse the repository at this point in the history
- tag the image with the version
  • Loading branch information
judahpaul16 committed Oct 18, 2024
1 parent 36fbeee commit 0d8ea91
Showing 1 changed file with 35 additions and 3 deletions.
38 changes: 35 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,37 @@
name: CI/CD Pipeline

on:
push:
branches:
- main
release:
types:
- published
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Test scenario tags'
required: false
type: boolean

permissions:
contents: read
packages: write

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history, including tags

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -31,10 +52,21 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}

- name: Get the version
id: get_version
run: |
VERSION=$(git tag | sort --version-sort | tail -n1)
echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT
echo "VERSION=${VERSION}"
- name: Build and push to Docker Hub
env:
VERSION: ${{ steps.get_version.outputs.VERSION }}
run: |
timeout 3600 docker buildx build --platform linux/arm64 --no-cache -t ${{ secrets.DOCKERHUB_USERNAME }}/gpt-home:latest --push .
- name: Build and push to GHCR
env:
VERSION: ${{ steps.get_version.outputs.VERSION }}
run: |
timeout 3600 docker buildx build --platform linux/arm64 --no-cache -t ghcr.io/${{ github.repository_owner }}/gpt-home:latest --push .

0 comments on commit 0d8ea91

Please sign in to comment.