refactor and added Dockerfile & Demo Action
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 2m5s
Details
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 2m5s
Details
This commit is contained in:
parent
46fcae7e70
commit
a20d897127
|
@ -0,0 +1,19 @@
|
|||
name: Gitea Actions Demo
|
||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Explore-Gitea-Actions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
||||
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||
- name: List files in the repository
|
||||
run: |
|
||||
ls ${{ gitea.workspace }}
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
|
@ -0,0 +1,12 @@
|
|||
# Use the official nginx image as the base
|
||||
FROM nginx:alpine
|
||||
|
||||
# Remove the default nginx static files
|
||||
RUN rm -rf /usr/share/nginx/html/*
|
||||
|
||||
# Copy the content of /srv directory to the nginx serving directory
|
||||
# Note: You need to have the /srv directory with your files on the Docker host
|
||||
COPY /srv /usr/share/nginx/html
|
||||
|
||||
# Start nginx in the foreground
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
|
@ -6,10 +6,10 @@ Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das d
|
|||
## Usage
|
||||
|
||||
```html
|
||||
<link rel="stylesheet" href="https://git.stuve.uni-ulm.de/StuVe-IT/wiki-js-customization/raw/branch/main/styles/main.css">
|
||||
<link type="text/plain" rel="stylesheet" href="https://git.stuve.uni-ulm.de/StuVe-IT/wiki-js-customization/raw/branch/main/styles/main.css">
|
||||
<link rel="stylesheet" href="https://git.stuve.uni-ulm.de/StuVe-IT/wiki-js-customization/raw/branch/main/styles/boxes.css">
|
||||
<link rel="stylesheet" href="https://git.stuve.uni-ulm.de/StuVe-IT/wiki-js-customization/raw/branch/main/styles/tables.css">
|
||||
<link rel="stylesheet" href="https://git.stuve.uni-ulm.de/StuVe-IT/wiki-js-customization/raw/branch/main/styles/template-engine.css">
|
||||
<link rel="stylesheet" href="https://git.stuve.uni-ulm.de/StuVe-IT/wiki-js-customization/raw/branch/main/styles/theme-override.css">
|
||||
|
||||
<script defer src="https://git.stuve.uni-ulm.de/StuVe-IT/wiki-js-customization/raw/branch/main/js/template-engine.js"/>
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue