-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: reorder lint and fix commit and push
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 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 |
---|---|---|
|
@@ -12,20 +12,20 @@ jobs: | |
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 20 | ||
- name: lint | ||
run: npm run lint | ||
- name: build | ||
run: | | ||
npm ci | ||
npx ng add angular-cli-ghpages --skip-confirmation | ||
npx ng build --base-href=/${{ github.event.repository.name }}/ | ||
- name: lint | ||
run: npm run lint | ||
- name: commit and push | ||
run: | | ||
cd dist/dev-fest-2024/browser | ||
git init | ||
git config user.name "build-ci" | ||
git config user.email "[email protected]" | ||
git remote add secure-origin https://${{ secrets.GENERAL_CI }}@github.com/ksw2000/${{ github.event.repository.name }} | ||
git remote add secure-origin https://${{ secrets.GITHUB_TOKEN }}@github.com/gdg-twhk/${{ github.event.repository.name }} | ||
git checkout -b gh-pages | ||
git add . | ||
git commit -m "gitpage by CI" | ||
|
@@ -37,18 +37,18 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: lint | ||
run: npm run lint | ||
- name: build | ||
run: | | ||
npm ci | ||
npx ng add angular-cli-ghpages --skip-confirmation | ||
npx ng build --base-href=/2024/ | ||
- name: lint | ||
run: npm run lint | ||
- name: Deploy to Firebase Hosting | ||
uses: FirebaseExtended/action-hosting-deploy@v0 | ||
with: | ||
entryPoint: "./" | ||
repoToken: "${{ secrets.GITHUB_TOKEN }}" | ||
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}" | ||
projectId: "${{ secrets.PROJECT_ID }}" | ||
channelId: live | ||
channelId: live |