build and push busybox1.31 #5
This file contains 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: publish | |
on: | |
push: | |
branches: | |
- docker-limit | |
jobs: | |
publish-hello-docker-image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push the hello-docker Docker image | |
run: | | |
docker pull docker.io/busybox:1.32 | |
docker image tag docker.io/busybox:1.32 ghcr.io/obmondo/busybox:1.32 | |
docker push ghcr.io/obmondo/busybox:1.32 |