Skip to content

fix: add ssl.rejectUnauthorized (#3) #10

fix: add ssl.rejectUnauthorized (#3)

fix: add ssl.rejectUnauthorized (#3) #10

Workflow file for this run

name: ✨ Release
on:
workflow_dispatch:
push:
# Pattern matched against refs/tags
# tags:
# - "*" # Push events to every tag not containing /
branches:
- main
- beta
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
with:
extra_plugins: |
@codedependant/semantic-release-docker
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
GIT_AUTHOR_NAME: github-actions[bot]
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com
GIT_COMMITTER_NAME: github-actions[bot]
GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com
DOCKER_REGISTRY_USER: ${{ github.actor }}
DOCKER_REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}