Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…into main
  • Loading branch information
zamrokk committed Jul 13, 2023
2 parents b4de04c + e0b03f5 commit b614607
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
- name: Set outputs
id: vars
run: |
echo "::set-output name=date::$(date +%Y-%m-%dT%H-%M-%S)"
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
echo "date=$(date +%Y-%m-%dT%H-%M-%S)" >> "${GITHUB_OUTPUT}"
echo "sha_short=$(git rev-parse --short HEAD)" >> "${GITHUB_OUTPUT}"
- name: Set up Docker Buildx
uses: docker/Setup-buildx-action@v2

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
- name: Build
run: cd ./doc ; node ./convert.js
- name: Setup Pages
uses: actions/configure-pages@v2
uses: actions/configure-pages@v3.0.0
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "doc/www"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v2

0 comments on commit b614607

Please sign in to comment.