Skip to content

Commit

Permalink
Merge pull request #33 from visto9259/1.1.x
Browse files Browse the repository at this point in the history
Updated GH CI workflow to run on push only
  • Loading branch information
visto9259 authored Nov 9, 2024
2 parents 993e629 + 52d3486 commit 43bd1cc
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build GitHub Pages No Deploy
name: Test Build GitHub Pages

defaults:
run:
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
name: Build and Deploy to GitHub Pages
name: Build and Deploy to GitHub Pages on Release

defaults:
run:
shell: bash
working-directory: ./docs

on:
push:
branches:
- 'master'
# push:
# branches:
# - 'main'
workflow_dispatch:
milestone:
types:
- "closed"


jobs:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/release-on-milestone-closed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions

name: "Automatic Releases"

on:
milestone:
types:
- "closed"

jobs:
release:
uses: laminas/workflow-automatic-releases/.github/workflows/[email protected]
secrets:
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
ORGANIZATION_ADMIN_TOKEN: ${{ secrets.ORGANIZATION_ADMIN_TOKEN }}
SIGNING_SECRET_KEY: ${{ secrets.SIGNING_SECRET_KEY }}

0 comments on commit 43bd1cc

Please sign in to comment.