mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-01 14:57:14 +08:00
5ced7a036b
Bumps [sigstore/cosign-installer](https://github.com/sigstore/cosign-installer) from 3.8.1 to 3.8.2. - [Release notes](https://github.com/sigstore/cosign-installer/releases) - [Commits](https://github.com/sigstore/cosign-installer/compare/d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a...3454372f43399081ed03b604cb2d021dabca52bb) --- updated-dependencies: - dependency-name: sigstore/cosign-installer dependency-version: 3.8.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
141 lines
5.1 KiB
YAML
141 lines
5.1 KiB
YAML
name: 'Docker Release'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '.github/workflows/docker-release.yml'
|
|
- 'lib/**'
|
|
- '!lib/**/*.test.ts'
|
|
- 'Dockerfile'
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
check-env:
|
|
permissions:
|
|
contents: none
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
outputs:
|
|
check-docker: ${{ steps.check-docker.outputs.defined }}
|
|
steps:
|
|
- id: check-docker
|
|
env:
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
if: ${{ env.DOCKER_USERNAME != '' }}
|
|
run: echo "defined=true" >> $GITHUB_OUTPUT
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
needs: check-env
|
|
if: needs.check-env.outputs.check-docker == 'true'
|
|
timeout-minutes: 60
|
|
permissions:
|
|
packages: write
|
|
id-token: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Install cosign
|
|
if: github.event_name != 'pull_request'
|
|
uses: sigstore/cosign-installer@3454372f43399081ed03b604cb2d021dabca52bb # v3.8.2
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
|
|
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Log in to the Container registry
|
|
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract Docker metadata (ordinary version)
|
|
id: meta-ordinary
|
|
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
|
|
with:
|
|
images: |
|
|
${{ secrets.DOCKER_USERNAME }}/rsshub
|
|
ghcr.io/${{ github.repository }}
|
|
tags: |
|
|
type=raw,value=latest,enable=true
|
|
type=raw,value={{date 'YYYY-MM-DD'}},enable=true
|
|
type=sha,format=long,prefix=,enable=true
|
|
flavor: latest=false
|
|
|
|
- name: Build and push Docker image (ordinary version)
|
|
id: build-and-push
|
|
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: ${{ steps.meta-ordinary.outputs.tags }}
|
|
labels: ${{ steps.meta-ordinary.outputs.labels }}
|
|
platforms: linux/amd64,linux/arm64
|
|
cache-from: type=gha,scope=docker-release
|
|
cache-to: type=gha,mode=max,scope=docker-release
|
|
|
|
- name: Sign the published Docker image
|
|
if: ${{ github.event_name != 'pull_request' }}
|
|
env:
|
|
COSIGN_EXPERIMENTAL: 'true'
|
|
run: echo "${{ steps.meta-ordinary.outputs.tags }}" | xargs -I {} cosign sign --yes {}@${{ steps.build-and-push.outputs.digest }}
|
|
|
|
- name: Extract Docker metadata (Chromium-bundled version)
|
|
id: meta-chromium-bundled
|
|
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
|
|
with:
|
|
images: |
|
|
${{ secrets.DOCKER_USERNAME }}/rsshub
|
|
ghcr.io/${{ github.repository }}
|
|
tags: |
|
|
type=raw,value=chromium-bundled,enable=true
|
|
type=raw,value=chromium-bundled-{{date 'YYYY-MM-DD'}},enable=true
|
|
type=sha,format=long,prefix=chromium-bundled-,enable=true
|
|
flavor: latest=false
|
|
|
|
- name: Build and push Docker image (Chromium-bundled version)
|
|
id: build-and-push-chromium
|
|
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
|
|
with:
|
|
context: .
|
|
build-args: PUPPETEER_SKIP_DOWNLOAD=0
|
|
push: true
|
|
tags: ${{ steps.meta-chromium-bundled.outputs.tags }}
|
|
labels: ${{ steps.meta-chromium-bundled.outputs.labels }}
|
|
platforms: linux/amd64,linux/arm64
|
|
cache-from: |
|
|
type=registry,ref=${{ secrets.DOCKER_USERNAME }}/rsshub:chromium-bundled
|
|
cache-to: type=inline,ref=${{ secrets.DOCKER_USERNAME }}/rsshub:chromium-bundled # inline cache is enough
|
|
|
|
- name: Sign the published Docker image
|
|
if: ${{ github.event_name != 'pull_request' }}
|
|
env:
|
|
COSIGN_EXPERIMENTAL: 'true'
|
|
run: echo "${{ steps.meta-chromium-bundled.outputs.tags }}" | xargs -I {} cosign sign --yes {}@${{ steps.build-and-push-chromium.outputs.digest }}
|
|
|
|
description:
|
|
runs-on: ubuntu-latest
|
|
needs: check-env
|
|
if: needs.check-env.outputs.check-docker == 'true'
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Docker Hub Description
|
|
uses: peter-evans/dockerhub-description@432a30c9e07499fd01da9f8a49f0faf9e0ca5b77 # v4.0.2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: ${{ secrets.DOCKER_USERNAME }}/rsshub
|