Skip to content

Commit

Permalink
Create deplyo-docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Arteiii authored Feb 21, 2025
1 parent 0779aa9 commit 1d2248f
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/deplyo-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Build and Publish Full Docker Image

on:
push:
tags:
- 'v*.*.*'

jobs:
build:
permissions:
contents: read
packages: write
id-token: write
runs-on: ubuntu-latest
env:
ORGA_NAME: 'Sparx-Foundation'
REPO_NAME: 'subscriber'

steps:
- name: Checkout code
uses: actions/checkout@v4

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

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract version from tag
id: extract_version
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile
push: true
tags: |
ghcr.io/${{ env.ORGA_NAME }}/${{ env.REPO_NAME }}:latest
ghcr.io/${{ env.ORGA_NAME }}/${{ env.REPO_NAME }}:${{ env.VERSION }}

0 comments on commit 1d2248f

Please sign in to comment.