diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index abf3ccd..ab22ae4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,6 +15,7 @@ jobs: lint: name: Lint runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest steps: - name: Checkout code uses: actions/checkout@v4 @@ -44,6 +45,7 @@ jobs: test: name: Test runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest needs: lint steps: - name: Checkout code @@ -71,6 +73,7 @@ jobs: build: name: Build runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest needs: test strategy: matrix: @@ -137,6 +140,7 @@ jobs: docker: name: Build Docker Image runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest needs: test steps: - name: Checkout code @@ -184,6 +188,7 @@ jobs: release: name: Create Release runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest needs: [build, docker] if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') steps: diff --git a/.gitea/workflows/docker-publish.yml b/.gitea/workflows/docker-publish.yml index d9af1b4..fe19ccd 100644 --- a/.gitea/workflows/docker-publish.yml +++ b/.gitea/workflows/docker-publish.yml @@ -14,6 +14,7 @@ jobs: build-and-push: name: Build and Push Docker Image runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest permissions: contents: read packages: write diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 305b480..ca9c123 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -9,6 +9,7 @@ jobs: create-release: name: Create Release runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest outputs: upload_url: ${{ steps.create_release.outputs.upload_url }} steps: @@ -43,6 +44,7 @@ jobs: name: Build and Upload Assets needs: create-release runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest strategy: matrix: include: diff --git a/config.example.yaml b/config.example.yaml index 9570820..36eceb5 100644 --- a/config.example.yaml +++ b/config.example.yaml @@ -6,6 +6,7 @@ name: "Your Name" bio: "A short bio about yourself" avatar: "static/logo.png" # Can be a local path or URL (http://... or https://...) theme: "auto" +# font_awesome_cdn: "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" # Optional: custom Font Awesome CDN URL (default: Font Awesome 6.5.1) links: - title: "My Website" url: "https://yourwebsite.com"