This commit is contained in:
27
.gitea/workflows/build.yaml
Normal file
27
.gitea/workflows/build.yaml
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Build Container
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Clone robin
|
||||
run: |
|
||||
git clone https://github.com/apurvsinghgautam/robin
|
||||
cd robin
|
||||
ls -al
|
||||
|
||||
- name: Build Docker image
|
||||
run: |
|
||||
cd robin
|
||||
docker build -t docker.central.nu/alex/robin:latest .
|
||||
|
||||
- name: Push Docker image
|
||||
run: |
|
||||
docker push docker.central.nu/alex/robin:latest
|
||||
Reference in New Issue
Block a user