Skip to content

archive post (#57)

archive post (#57) #54

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: validate
# Controls when the action will run.
on:
push:
branches:
- '!master' # excludes master
- '**' # matches every branch
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Web Repo
uses: actions/checkout@v2
with:
repository: davidgs/DavidgsWeb
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
path: ./DavidgsWeb
- name: Checkout Translate
uses: actions/checkout@v2
with:
repository: davidgs/Translator
path: ./translate
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.81.0'
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: '1.17'
- name: Build Translator
run: cd ./translate; go build translate.go
- name: Create Secret
uses: jsdaniell/create-json@1.1.2
with:
name: "./translate/google-secret.json"
json: ${{ secrets.TRANSLATE_SECRET }}
- name: Translate
run: cd ./translate; ./translate ../DavidgsWeb/content/posts/
- name: ReCommit
# run: cd ./DavidgsWeb
uses: stefanzweifel/git-auto-commit-action@v4
with:
# Optional, but recommended
# Defaults to "Apply automatic changes"
commit_message: Apply Auto-Translations
# branch: main
# file_pattern: index.*.md
repository: ./DavidgsWeb