Skip to content

ci(tools): update actions/checkout action to v4 #24

ci(tools): update actions/checkout action to v4

ci(tools): update actions/checkout action to v4 #24

Workflow file for this run

---
name: dist
'on':
push:
branches:
- master
jobs:
dist:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Build manifest
uses: actionhippie/kustomize@v2
with:
version: 4.4.0
target: dist/manifest.yml
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: GitHub Actions
author_email: [email protected]
add: dist/manifest.yml
message: automated dist update [skip ci]
push: true
commit: --signoff
...