Skip to content

chore(deps): bump qs from 6.15.3 to 6.16.0; test [chocolatey powershellgallery resharper wordpress] #3905

chore(deps): bump qs from 6.15.3 to 6.16.0; test [chocolatey powershellgallery resharper wordpress]

chore(deps): bump qs from 6.15.3 to 6.16.0; test [chocolatey powershellgallery resharper wordpress] #3905

Workflow file for this run

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 "date=$(date --rfc-3339=date)" >> "$GITHUB_OUTPUT"
- name: Checkout branch "master"
uses: actions/checkout@v7
with:
ref: 'master'
- name: Tag release in GitHub
uses: actions/github-script@v9
env:
TAG: server-${{ steps.date.outputs.date }}
with:
script: |
await github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: `refs/tags/${process.env.TAG}`,
sha: context.sha,
})
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
with:
platforms: linux/amd64,linux/arm64
- name: Login to DockerHub
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push snapshot release to DockerHub
uses: docker/build-push-action@v7
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: shieldsio/shields:server-${{ steps.date.outputs.date }}
build-args: |
version=server-${{ steps.date.outputs.date }}
- name: Login to GHCR
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push snapshot release to GHCR
uses: docker/build-push-action@v7
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ghcr.io/badges/shields:server-${{ steps.date.outputs.date }}
build-args: |
version=server-${{ steps.date.outputs.date }}