Skip to content

Commit

Permalink
GitHub Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sprat committed Oct 12, 2024
1 parent 8e07a1c commit b16c8b5
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 39 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: CI

"on": push

jobs:
validate:
runs-on: ubuntu-latest
outputs:
components: ${{ steps.filter.outputs.changes }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Lint
uses: docker/bake-action@v5

- name: Detect Changes
uses: dorny/paths-filter@v3
id: filter
with:
filters: |
mergerfs: 'mergerfs/**'
snapraid: 'snapraid/**'
build:
runs-on: ubuntu-latest
needs: validate
if: ${{ fromJSON(needs.validate.outputs.components)[0] != null }}
strategy:
matrix:
component: ${{ fromJSON(needs.validate.outputs.components) }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build
uses: docker/bake-action@v5
with:
workdir: ${{ matrix.component }}
push: ${{ github.ref == 'refs/heads/master' }}
39 changes: 0 additions & 39 deletions .gitlab-ci.yml

This file was deleted.

0 comments on commit b16c8b5

Please sign in to comment.