Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d46fe926d8 | |||
| 255dc03e57 | |||
| f2df48bced | |||
| 6bd6096013 | |||
| f4bfb5d584 | |||
| 9a5346cfe4 | |||
| 69b659d2cc | |||
| 8f72269f3e | |||
| 0a4cb4b673 | |||
| 9bb285f71e | |||
| 573f58fd5d | |||
| 2f0a4ea2e6 | |||
| 905f21eb55 | |||
| 59748d7cc8 | |||
| 42abda02f3 | |||
| 4e7040f6a3 | |||
| cecc72b595 | |||
| 60b6682b1c | |||
| f46fd31f34 | |||
| 141ea4e622 | |||
| 496477a05b |
32
.gitea/workflows/ci.yaml
Normal file
32
.gitea/workflows/ci.yaml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
name: ci
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- develop
|
||||||
|
merge:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
with:
|
||||||
|
driver: kubernetes
|
||||||
|
driver-opts: |
|
||||||
|
namespace=gitea
|
||||||
|
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
tags: ericomeehan/kraken-bot:latest
|
||||||
Loading…
Reference in New Issue
Block a user