Add .gitea/workflows/build.yaml
This commit is contained in:
parent
030a7e49e5
commit
38bbc9a816
27
.gitea/workflows/build.yaml
Normal file
27
.gitea/workflows/build.yaml
Normal file
@ -0,0 +1,27 @@
|
||||
name: Build and Push Image
|
||||
on: [ push ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build and push image
|
||||
runs-on: ubuntu-latest
|
||||
container: catthehacker/ubuntu:act-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: git.stardust.wtf
|
||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
run: |
|
||||
cd xfce-custom
|
||||
TODAY=$(date +'%Y-%m-%d')
|
||||
docker build -t ${REGISTRY}/${REPO_OWNER}/${IMAGE_NAME}:xfce-custom-${TODAY} -t ${REGISTRY}/${REPO_OWNER}/${IMAGE_NAME}:xfce-custom-git .
|
||||
docker push ${REGISTRY}/${REPO_OWNER}/${IMAGE_NAME}:xfce-custom-${TODAY}
|
||||
docker push ${REGISTRY}/${REPO_OWNER}/${IMAGE_NAME}:xfce-custom-git
|
Loading…
Reference in New Issue
Block a user