feature/gitea-actions #2

Merged
RogerSik merged 15 commits from feature/gitea-actions into main 2023-07-30 20:40:13 +02:00
2 changed files with 5 additions and 3 deletions
Showing only changes of commit d7dcf756c3 - Show all commits

View File

@@ -6,15 +6,17 @@ on:
- main - main
jobs: jobs:
Dockerfile lint: Ddockerfile lint:
runs-on: k3s runs-on: k3s
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: hadolint/hadolint-action@v3.1.0 - uses: hadolint/hadolint-action@v3.1.0
with: with:
dockerfile: Dockerfile dockerfile: Dockerfile
build: build:
runs-on: docker runs-on: docker
needs: "Dockerfile lint"
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: docker login - name: docker login

View File

@@ -8,7 +8,7 @@ on:
- cron: "0 6 * * SUN" - cron: "0 6 * * SUN"
jobs: jobs:
Dockerfile lint: Ddockerfile lint:
runs-on: k3s runs-on: k3s
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@@ -17,8 +17,8 @@ jobs:
dockerfile: Dockerfile dockerfile: Dockerfile
build: build:
needs: Dockerfile lint
runs-on: docker runs-on: docker
needs: "Dockerfile lint"
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Pull Docker Image for caching - name: Pull Docker Image for caching