chore(deps): bump ip from 2.0.0 to 2.0.1 or higher last last try #4
Workflow file for this run
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
name: publish-to-test | |
on: | |
push: | |
tags: | |
- 'test-v*' | |
jobs: | |
publish-to-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Run the tests | |
run: npm test | |
- name: Create build folder | |
run: npm run build | |
- name: Installs ncftp | |
run: sudo apt-get install ncftp | |
- name: Upload build folder to test environment | |
run: ncftpput -R -v -u ${{ secrets.FTP_USER_NAME_TEST }} -p ${{ secrets.FTP_PW_TEST }} ${{ secrets.FTP_SERVER_ADDRESS }} ./ build/* |