Update README.md #32
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: Docker | |
# on: | |
# schedule: | |
# - cron: '38 21 * * *' | |
# push: | |
# branches: [ "main" ] | |
# # Publish semver tags as releases. | |
# tags: [ 'v*.*.*' ] | |
# pull_request: | |
# branches: [ "main" ] | |
# env: | |
# # Use docker.io for Docker Hub if empty | |
# REGISTRY: ghcr.io | |
# # github.repository as <account>/<repo> | |
# IMAGE_NAME: ${{ github.repository }} | |
# jobs: | |
# lint: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v3 | |
# - name: Debug files | |
# run: ls -R | |
# - name: Check YAML file formatting | |
# run: docker run -v $(pwd):/workdir sdesbure/yamllint /workdir | |
# working-directory: .github/workflows | |
# build: | |
# runs-on: ubuntu-latest | |
# permissions: | |
# contents: read | |
# packages: write | |
# # This is used to complete the identity challenge | |
# # with sigstore/fulcio when running outside of PRs. | |
# id-token: write | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v3 | |
# # Install the cosign tool except on PR | |
# # https://github.com/sigstore/cosign-installer | |
# - name: Install cosign | |
# if: github.event_name != 'pull_request' | |
# uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd |