Bugfix: Action Group Order (#153) #46
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: Docker Image CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Install Node.js for test purpose | |
- name: Set up Node.js to test with yarn test | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' # Make sure to stay in sync with the version defined in Dockerfile | |
- name: Install dependencies to test with yarn test | |
run: yarn install | |
- name: Run tests | |
run: yarn test | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ajktown | |
password: ${{ secrets.AJKTOWN_ORG_ACTION }} | |
- name: Build the Docker image for PR | |
if: github.event_name == 'pull_request' | |
run: docker build . --file Dockerfile --tag ajktown/api:pr${{ github.event.pull_request.number }} | |
- name: Push the Docker image for PR | |
if: github.event_name == 'pull_request' | |
run: docker push ajktown/api:pr${{ github.event.pull_request.number }} | |
# - name: Build the Docker image as latest | |
# if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
# run: docker build . --file Dockerfile --tag ajktown/api:latest | |
# - name: Push the Docker image as latest | |
# if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
# run: docker push ajktown/api:latest |