-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kacper
committed
Dec 13, 2024
1 parent
41f71a2
commit e3b6caf
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,17 +56,17 @@ jobs: | |
- name: cmd run | ||
run: ls -la | ||
- name: Angular create 404.html | ||
run: cd vulnrepo-app;cp index.html 404.html;ls -la | ||
run: cd vulnrepo-app/browser;cp index.html 404.html;ls -la | ||
|
||
- name: Add CNAME | ||
run: cd vulnrepo-app;echo "vulnrepo.com" > CNAME;ls -la | ||
run: cd vulnrepo-app/browser;echo "vulnrepo.com" > CNAME;ls -la | ||
|
||
- name: Add README.md | ||
run: cd vulnrepo-app;printf "# vulnrepo-build-prod\n\nAutomatic build of the https://github.com/kac89/vulnrepo application." > README.md | ||
run: cd vulnrepo-app/browser;printf "# vulnrepo-build-prod\n\nAutomatic build of the https://github.com/kac89/vulnrepo application." > README.md | ||
|
||
- name: Commit build | ||
run: | | ||
cd vulnrepo-app | ||
cd vulnrepo-app/browser | ||
git init | ||
git config --global user.name 'github-actions[bot]' | ||
git config --global user.email '[email protected]' | ||
|