mirror of
https://code.forgejo.org/actions/checkout.git
synced 2024-11-06 03:55:50 +00:00
2adf6a7e1f
Bumps the minor-actions-dependencies group with 2 updates in the / directory: [actions/publish-immutable-action](https://github.com/actions/publish-immutable-action) and [docker/build-push-action](https://github.com/docker/build-push-action). Updates `actions/publish-immutable-action` from 0.0.3 to 0.0.4 - [Release notes](https://github.com/actions/publish-immutable-action/releases) - [Commits](https://github.com/actions/publish-immutable-action/compare/0.0.3...v0.0.4) Updates `docker/build-push-action` from 6.5.0 to 6.9.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6.5.0...v6.9.0) --- updated-dependencies: - dependency-name: actions/publish-immutable-action dependency-type: direct:production update-type: version-update:semver-patch 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>
59 lines
2.2 KiB
YAML
59 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.3.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@v6.9.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 }}
|