-
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.
Merge pull request #92 from frontend-park-mail-ru/develop
Develop
- Loading branch information
Showing
201 changed files
with
21,554 additions
and
21,202 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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: CD | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Check out code into directory | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
- name: Upload build result | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: ~/dist | ||
|
||
delivery: | ||
name: Delivery | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Download build | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dist | ||
path: ./dist | ||
|
||
- name: Transfer build files to server | ||
uses: appleboy/[email protected] | ||
with: | ||
host: 185.241.194.24 | ||
username: ubuntu | ||
key: ${{ secrets.PRIVATE_KEY }} | ||
source: "dist/*" | ||
target: "/var/www/nova-music/dist" | ||
strip_components: 1 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.