feat: main features finished #6
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: Build and publish docker image | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
publish-docker-image: | |
runs-on: ubuntu-latest | |
name: Build and publish docker image | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: | | |
cd web | |
npm install | |
- name: Build web | |
run: | | |
cd web | |
npm run build | |
- name: Build image | |
run: | | |
docker build -t ${{ secrets.DOCKER_HUB_USERNAME }}/free-one-api:latest . | |
- name: Publish image | |
run: | | |
docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} -p ${{ secrets.DOCKER_HUB_PASSWORD }} | |
docker push ${{ secrets.DOCKER_HUB_USERNAME }}/free-one-api:latest |