mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 01:40:02 -05:00
* this is a test
* [autofix.ci] apply automated fixes
* dot reporter for line by line
* [autofix.ci] apply automated fixes
* ok...
* list reporter
* Update VRT screenshots
Auto-generated by VRT workflow
PR: #6429
* fix couple of issues
* Revert "Update VRT screenshots"
This reverts commit 0124b13475.
* putting text change back
* release notes
* skipping translations on the desktop app
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
33 lines
836 B
YAML
33 lines
836 B
YAML
name: Release Docs to Github Pages
|
|
|
|
# Release docs on every push to master
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'packages/docs/**'
|
|
- '.github/workflows/docs-spelling.yml'
|
|
- '.github/actions/docs-spelling/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
name: Deploy Docs
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
|
|
- name: Set up environment
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
download-translations: 'false'
|
|
|
|
- name: Docusaurus Deploy
|
|
run: |
|
|
GIT_USER=MikesGlitch \
|
|
GIT_PASS=${{ secrets.DOCS_GITHUB_PAGES_DEPLOY }} \
|
|
GIT_USER_NAME=github-actions[bot] \
|
|
GIT_USER_EMAIL=github-actions[bot]@users.noreply.github.com \
|
|
yarn deploy:docs
|