This repository was archived by the owner on Aug 2, 2025. It is now read-only.
Build Workstation container #744
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: Build Workstation container | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - images/workstation/** | |
| schedule: | |
| - cron: "0 5 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| build-and-push-image: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Get current timestamp | |
| id: time | |
| run: echo "time=$(date +'%s')" >> $GITHUB_OUTPUT | |
| - name: Build and push Docker images | |
| uses: docker/build-push-action@v5.4.0 | |
| with: | |
| context: images/workstation/ | |
| platforms: linux/amd64,linux/arm64 | |
| tags: | | |
| ghcr.io/behnh/workstation:latest, | |
| ghcr.io/behnh/workstation:auto-${{ steps.time.outputs.time }} | |
| push: ${{ github.ref == 'refs/heads/main' }} |