mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 14:05:36 +01:00
CI: add deploy step to GitHub Actions
This commit is contained in:
parent
ecebeab57c
commit
87f5788567
20
.github/workflows/nodejs.yml
vendored
20
.github/workflows/nodejs.yml
vendored
@ -13,7 +13,7 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [13.x]
|
||||
node-version: [14.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
@ -23,3 +23,21 @@ jobs:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: yarn
|
||||
- run: yarn build
|
||||
|
||||
deploy:
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
name: Setup Docker BuildX system
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- uses: docker/build-push-action@v2
|
||||
name: Deploy the image
|
||||
with:
|
||||
push: true
|
||||
tags: citraemu/discord-bot:latest
|
||||
|
Loading…
Reference in New Issue
Block a user