Skip to content

Commit

Permalink
[SKIP-GH-PAGES] fix cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenzing committed Sep 4, 2024
1 parent f23ed87 commit 6b92f85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Commit and push changes
env:
# push from blockscout-bot to trigger the pages workflow
GH_TOKEN: ${{ secrets.BLOCKSCOUT_BOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.BLOCKSCOUT_BOT_TOKEN }}
run: |
git config --global user.name "GitHub Actions Bot"
git config --global user.email "[email protected]"
Expand Down
3 changes: 3 additions & 0 deletions services/smart-contract-verifier/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@

const fileList = document.getElementById('file-list');
versions.forEach(version => {
if (version.trim() === '') {
return;
}
const li = document.createElement('li');
const a = document.createElement('a');
a.href = `./${version}/index.html`;
Expand Down

0 comments on commit 6b92f85

Please sign in to comment.