Update package version to 1.4.0 and update error-ex dependency to ver… #561
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: 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 | |
# 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 |