Skip to content

Docker Publish

Docker Publish #4

name: Docker Publish
on:
push:
schedule:
- cron: '0 4 1 * *'
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: standaged
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: standaged/manylinux2014-rust:latest