vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 05ce531e1a948c01111a85fea9f98e71c02b0c36
parent 31f65ee8ed05004dc5160a85d5cbd0ded2b910f3
Author: Randy Palamar <palamar@ualberta.ca>
Date:   Thu, 25 May 2023 06:09:33 -0600

ci: fix authentication by using GITHUB_TOKEN

Diffstat:
M.github/workflows/luadoc.yml | 2+-
M.github/workflows/man.yml | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/luadoc.yml b/.github/workflows/luadoc.yml @@ -25,7 +25,7 @@ jobs: - name: Upload env: - DEPLOY_TOKEN: ${{ secrets.GITHUB_DEPLOY_TOKEN }} + DEPLOY_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | git clone --depth=1 --single-branch --branch gh-pages "https://x-access-token:${DEPLOY_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" /tmp/gh-pages git config --global user.name "${GITHUB_ACTOR}" diff --git a/.github/workflows/man.yml b/.github/workflows/man.yml @@ -24,7 +24,7 @@ jobs: - name: Upload env: - DEPLOY_TOKEN: ${{ secrets.GITHUB_DEPLOY_TOKEN }} + DEPLOY_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | git clone --depth=1 --single-branch --branch gh-pages "https://x-access-token:${DEPLOY_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" /tmp/gh-pages git config --global user.name "${GITHUB_ACTOR}"