Set up
All checks were successful
Create and publish container / build_container (push) Successful in 5s
All checks were successful
Create and publish container / build_container (push) Successful in 5s
This commit is contained in:
15
.gitea/workflows/create-and-publish.yml
Normal file
15
.gitea/workflows/create-and-publish.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
name: Create and publish container
|
||||
on:
|
||||
push
|
||||
jobs:
|
||||
build_container:
|
||||
runs_on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out Git repository
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
ref: main
|
||||
- name: Build and upload image
|
||||
run: |
|
||||
docker login -u ${{ variables.REGISTRY_USER_USERNAME }} -p ${{ secrets.REGISTRY_USER_PASSWORD }}
|
||||
./build-image.sh ${{ variables.REGISTRY_URL }}
|
||||
Reference in New Issue
Block a user