Updated versions #210
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: pushDocker | |
| on: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: 45 23 * * 0 # https://crontab.guru/#45_23_*_*_0 | |
| repository_dispatch: | |
| types: [bumped] | |
| jobs: | |
| debug: | |
| uses: jaid/workflows/.github/workflows/debug.yml@main | |
| job: | |
| name: ${{ github.workflow }} | |
| uses: jaid/workflows/.github/workflows/pushDocker.yml@main | |
| permissions: | |
| contents: read | |
| packages: write | |
| with: | |
| dockerHubUser: jaidchen | |
| matrixPlatform: linux/amd64 linux/arm64/v8 | |
| matrixBases: latest lts debian | |
| matrixAdditionEvals: |- | |
| image: Object.create({ lts: 'ubuntu:latest', debian: 'debian:stable-slim' })[base] ?? 'ubuntu:rolling' | |
| pythonVersion: '3.14' | |
| javaVersion: 25 | |
| nodeVersion: '25.0.0' | |
| matrixFlavorEval: |- | |
| [ | |
| base === 'latest' ? null : base, | |
| platformShortcuts[platform] ?? platform.replaceAll('/', '_') | |
| ].filter(Boolean).join('-') | |
| versionTag: ${{ github.event.client_payload.newTag }} | |
| secrets: | |
| dockerHubToken: ${{ secrets.dockerHubToken }} |