container time?
This commit is contained in:
@@ -19,14 +19,23 @@
|
|||||||
# only:
|
# only:
|
||||||
# - branches
|
# - branches
|
||||||
|
|
||||||
name: Gitea Actions Demo
|
name: Build dioxus container
|
||||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
TestStage:
|
TestStage:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- run: echo "foo"
|
- name: Login to gitea docker registry
|
||||||
- run: echo "bar"
|
uses: docker/login-action@v3
|
||||||
- run: echo "baz" > foo
|
with:
|
||||||
|
registry: git.ohea.xyz
|
||||||
|
username: ${{ secrets.CI_REGISTRY_USER }}
|
||||||
|
password: ${{ secrets.CI_REGISTRY_PASSWORD }}
|
||||||
|
- name: Build and push dioxus base container
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: docker/Dockerfile
|
||||||
|
push: true
|
||||||
|
tags: "git.ohea.xyz/mumble/mumbleweb2/dioxus-build:latest"
|
||||||
|
|||||||
Reference in New Issue
Block a user