Skip to content

Update actions/checkout digest to eef6144 #58

Update actions/checkout digest to eef6144

Update actions/checkout digest to eef6144 #58

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Docker build
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
paths-ignore:
- 'README.md'
- 'docker-compose.yml'
- 'renovate.json'
- '.dockerignore'
- '.github/'
branches: [ main ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Docker Login
# You may pin to the exact commit or the version.
# uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
uses: docker/[email protected]
with:
# Username used to log against the Docker registry
username: ${{ secrets.DOCKER_USER }}
# Password or personal access token used to log against the Docker registry
password: ${{ secrets.DOCKERHUB_TOKEN }}
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Docker build
run: |
docker build . -t go2engle/dynuiuc:latest
- name: Docker Push
run: |
docker push go2engle/dynuiuc:latest