remove EOL focal #33
This file contains hidden or 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 | |
| on: | |
| pull_request: | |
| paths: [dockerfiles/*, .github/workflows/main.yml, bin/docker-build] | |
| push: | |
| branches: [main] | |
| paths: [dockerfiles/*, .github/workflows/main.yml, bin/docker-build] | |
| workflow_dispatch: | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: docker login --username '${{ github.actor }}' --password-stdin ghcr.io <<< "$GHCR_TOKEN" | |
| env: | |
| GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| if: github.event_name != 'pull_request' | |
| - run: docker buildx create --driver docker-container --use | |
| - run: python3 -uS bin/docker-build --event ${{ github.event_name }} |