init bitpart
This commit is contained in:
commit
220a196919
3 changed files with 41 additions and 0 deletions
37
.forgejo/workflows/build.yml
Normal file
37
.forgejo/workflows/build.yml
Normal file
|
@ -0,0 +1,37 @@
|
|||
name: Build And Publish Docker
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
build-latest:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install deps
|
||||
run: apt update && apt install iptables -y
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
id: buildx
|
||||
uses: docker/setup-buildx-action@master
|
||||
|
||||
- name: Login to Self-Hosted Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: fung.uy
|
||||
username: ${{ secrets.MYCO_REGISTRY_USER }}
|
||||
password: ${{ secrets.MYCO_PERSONAL_ACCESS_TOKEN }}
|
||||
|
||||
- name: Build and Push
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: ./bitpart/
|
||||
file: ./bitpart/Dockerfile
|
||||
platforms: linux/amd64
|
||||
push: true
|
||||
tags: |
|
||||
fung.uy/mycosystems/bitpart:latest
|
||||
fung.uy/mycosystems/bitpart:1.0.0
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "bitpart/bitpart"]
|
||||
path = bitpart/bitpart
|
||||
url = https://github.com/throneless-tech/bitpart.git
|
1
bitpart/bitpart
Submodule
1
bitpart/bitpart
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 66858965138cd0713f32eb0682b21239a0dce25a
|
Loading…
Add table
Reference in a new issue