mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
e31a3ef2ad
Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
39 lines
964 B
YAML
39 lines
964 B
YAML
# This workflow builds a docker image with the Dev Container CLI (https://github.com/devcontainers/cli)
|
|
#
|
|
name: 'Build Dev Container Image'
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- '.devcontainer/**'
|
|
schedule:
|
|
# https://crontab.guru/#0_0_*_*_1
|
|
- cron: '0 0 * * 1'
|
|
|
|
permissions:
|
|
contents: read
|
|
# Push images to GHCR.
|
|
packages: write
|
|
|
|
jobs:
|
|
build:
|
|
if: github.repository == 'SerenityOS/serenity'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build Base Dev Container Image
|
|
uses: devcontainers/ci@v0.3
|
|
with:
|
|
imageName: ghcr.io/serenityos/serenity-devcontainer
|
|
imageTag: base,latest
|
|
push: always
|