mirror of
https://github.com/Anduin2017/HowToCook.git
synced 2025-02-06 13:38:24 +08:00
51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
name: Continuous Deployment
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build-readme-file:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checkout, install tools..
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
token: ${{ secrets.PAT }}
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '16'
|
|
cache: 'npm'
|
|
- run: npm install
|
|
- run: npm run build
|
|
- run: npm run lint
|
|
# Save files.
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: '[ci skip] Automatic file changes/fix'
|
|
branch: 'master'
|
|
file_pattern: ':/*.*'
|
|
commit_user_name: github-actions[bot]
|
|
commit_user_email: github-actions[bot]@users.noreply.github.com
|
|
commit_author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
|
|
|
|
build-docker-image:
|
|
needs: build-readme-file
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checkout, install tools..
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
token: ${{ secrets.PAT }}
|
|
# Use docker to build current directory ./Dockfile
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v1
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and push the Docker image
|
|
run: |
|
|
docker build . --tag ghcr.io/anduin2017/how-to-cook:latest
|
|
docker push ghcr.io/anduin2017/how-to-cook:latest |