Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2 to 3. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
72 lines
1.9 KiB
YAML
72 lines
1.9 KiB
YAML
name: Create Release
|
|
|
|
on:
|
|
pull_request:
|
|
types: [closed]
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
create-release:
|
|
if: |
|
|
github.event_name == 'pull_request' &&
|
|
github.event.action == 'closed' &&
|
|
github.event.pull_request.merged == true &&
|
|
contains(github.event.pull_request.labels.*.name, 'release')
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Get current date
|
|
id: date
|
|
run: echo "::set-output name=date::$(date --rfc-3339=date)"
|
|
|
|
- name: Checkout branch "master"
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: 'master'
|
|
|
|
- name: Tag release in GitHub
|
|
uses: tvdias/github-tagger@v0.0.2
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
tag: server-${{ steps.date.outputs.date }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
version: v0.9.1
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Build and push snapshot release to DockerHub
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: shieldsio/shields:server-${{ steps.date.outputs.date }}
|
|
build-args: |
|
|
version=server-${{ steps.date.outputs.date }}
|
|
|
|
- name: Login to GHCR
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and push snapshot release to GHCR
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: ghcr.io/badges/shields:server-${{ steps.date.outputs.date }}
|
|
build-args: |
|
|
version=server-${{ steps.date.outputs.date }}
|