mirror of
https://gitea.com/actions/checkout.git
synced 2024-10-31 17:10:35 +01:00
37b082107b
Bumps the minor-actions-dependencies group with 2 updates: [docker/login-action](https://github.com/docker/login-action) and [docker/build-push-action](https://github.com/docker/build-push-action). Updates `docker/login-action` from 3.0.0 to 3.1.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3.0.0...v3.1.0) Updates `docker/build-push-action` from 5.1.0 to 5.3.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5.1.0...v5.3.0) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-actions-dependencies - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
60 lines
2.2 KiB
YAML
60 lines
2.2 KiB
YAML
name: Publish test-ubuntu-git Container
|
|
|
|
on:
|
|
# Use an on demand workflow trigger.
|
|
# (Forked copies of actions/checkout won't have permission to update GHCR.io/actions,
|
|
# so avoid trigger events that run automatically.)
|
|
workflow_dispatch:
|
|
inputs:
|
|
publish:
|
|
description: 'Publish to ghcr.io? (main branch only)'
|
|
type: boolean
|
|
required: true
|
|
default: false
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: actions/test-ubuntu-git
|
|
|
|
jobs:
|
|
build-and-push-image:
|
|
runs-on: ubuntu-latest
|
|
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
# Use `docker/login-action` to log in to GHCR.io.
|
|
# Once published, the packages are scoped to the account defined here.
|
|
- name: Log in to the ghcr.io container registry
|
|
uses: docker/login-action@v3.1.0
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Format Timestamp
|
|
id: timestamp
|
|
# Use `date` with a custom format to achieve the key=value format GITHUB_OUTPUT expects.
|
|
run: date -u "+now=%Y%m%d.%H%M%S.%3NZ" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Issue Image Publish Warning
|
|
if: ${{ inputs.publish && github.ref_name != 'main' }}
|
|
run: echo "::warning::test-ubuntu-git images can only be published from the actions/checkout 'main' branch. Workflow will continue with push/publish disabled."
|
|
|
|
# Use `docker/build-push-action` to build (and optionally publish) the image.
|
|
- name: Build Docker Image (with optional Push)
|
|
uses: docker/build-push-action@v5.3.0
|
|
with:
|
|
context: .
|
|
file: images/test-ubuntu-git.Dockerfile
|
|
# For now, attempts to push to ghcr.io must target the `main` branch.
|
|
# In the future, consider also allowing attempts from `releases/*` branches.
|
|
push: ${{ inputs.publish && github.ref_name == 'main' }}
|
|
tags: |
|
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}.${{ steps.timestamp.outputs.now }}
|