Compare commits
3 Commits
86fd22f6fc
...
08d62b792b
Author | SHA1 | Date | |
---|---|---|---|
08d62b792b | |||
1365a33b33 | |||
c421cd3121 |
@ -1,7 +1,8 @@
|
||||
name: Test build
|
||||
run-name: ${{ gitea.event_name }} is testing out Gitea Actions 🚀
|
||||
on:
|
||||
- push:
|
||||
- branches-ignore:
|
||||
- master
|
||||
- workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
25
.gitea/workflows/deploy.yaml
Normal file
25
.gitea/workflows/deploy.yaml
Normal file
@ -0,0 +1,25 @@
|
||||
name: Test build
|
||||
on:
|
||||
- push:
|
||||
- branches:
|
||||
- master
|
||||
- workflow_dispatch:
|
||||
|
||||
|
||||
jobs:
|
||||
Build-Docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
- name: Build Docker Image
|
||||
run: docker buildx build -t ${{ vars.DOCKER_TAG }} .
|
||||
- name: Log in to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
- name: Push Docker image
|
||||
run: docker push ${{ vars.DOCKER_TAG }}
|
@ -1,5 +1,7 @@
|
||||
# archean-server-pelican
|
||||
|
||||
![Build Status](https://git.tomatentum.net/tueem/archean-server-pelican/actions/workflows/build.yaml/badge.svg)
|
||||
|
||||
This is a modified docker container of the server container for archean to work with pelican panel.
|
||||
|
||||
- [Docker repo](https://hub.docker.com/repository/docker/tueem/archean-server-pelican/general)
|
||||
|
Loading…
x
Reference in New Issue
Block a user