on: schedule: - cron: '30 1 * * *' workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Build run: docker build . -t git.kemitix.net/kemitix/rust:latest - name: Login run: docker login --username kemitix --password ${FORGE_USER_PASSWORD} git.kemitix.net - name: Publish run: docker push git.kemitix.net/kemitix/rust:latest