Merge pull request #115 from adfinis/jlf/fix-create-mirror-using-Comm… #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main branch | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
cache: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
buildkitd-flags: --debug | |
- name: Build container | |
uses: docker/build-push-action@v5 | |
with: | |
context: compose | |
push: true | |
tags: ghcr.io/adfinis/pyaptly/cache:latest | |
cache-from: type=registry,ref=ghcr.io/adfinis/pyaptly/cache:gha | |
cache-to: type=registry,ref=ghcr.io/adfinis/pyaptly/cache:gha,mode=max | |
test: | |
runs-on: ubuntu-latest | |
needs: [cache] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
buildkitd-flags: --debug | |
- name: Build container | |
uses: docker/build-push-action@v5 | |
with: | |
context: compose | |
push: false | |
load: true | |
tags: ghcr.io/adfinis/pyaptly/cache:latest | |
cache-from: type=registry,ref=ghcr.io/adfinis/pyaptly/cache:gha | |
- name: Run tests | |
run: | | |
make test | |
package: | |
runs-on: ubuntu-latest | |
needs: [test] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
buildkitd-flags: --debug | |
- name: Build container | |
uses: docker/build-push-action@v5 | |
with: | |
context: compose | |
push: false | |
load: true | |
tags: ghcr.io/adfinis/pyaptly/cache:latest | |
cache-from: type=registry,ref=ghcr.io/adfinis/pyaptly/cache:gha | |
- name: Run tests | |
run: | | |
make build-packages | |
make rebuild-packages | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: packages | |
path: dist | |
retention-days: 90 |