initial commit

This commit is contained in:
Mrrp 2025-01-06 16:35:53 -08:00
commit ab06adb651
44 changed files with 8933 additions and 0 deletions

View file

@ -0,0 +1,24 @@
# Create a Docker container from this project and post it to Forgejo (a fork of Gitea) from this Forgejo runner.
name: container
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build -t git.smgames.club/${{ env.GITHUB_REPOSITORY_OWNER }}/felidae-site:latest .
- name: Log in to the Forgejo Container Registry
run: echo "${{ secrets.FORGEJO_TOKEN }}" | docker login -u "${{ secrets.FORGEJO_USERNAME }}" --password-stdin git.smgames.club
- name: Push the Docker image
run: docker push git.smgames.club/${{ env.GITHUB_REPOSITORY_OWNER }}/felidae-site:latest