Skip to content

Commit

Permalink
Update GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
shermp committed Apr 19, 2024
1 parent b86912e commit 5d90055
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ jobs:
container: ghcr.io/pgaskin/nickeltc:1.0
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: make clean && make all cli koboroot
- name: Build Documentation
run: make doc
- name: Upload KoboRoot with 'qndb'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: NickelDBus
path: KoboRoot.tgz
- name: Upload documentation
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Documentation
path: ./qdoc/html
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
container: ghcr.io/pgaskin/nickeltc:1.0
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: make doc
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./qdoc/html
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
container: ghcr.io/pgaskin/nickeltc:1.0
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: make clean && make all cli koboroot
- name: Create release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
draft: true
body: '<!-- replace this with the release notes -->'
Expand Down

0 comments on commit 5d90055

Please sign in to comment.