2020-11-13 22:15:01 +08:00
|
|
|
on: [push]
|
2019-08-17 18:04:35 +08:00
|
|
|
name: Deploy workflow
|
|
|
|
jobs:
|
|
|
|
install:
|
2020-11-13 22:15:01 +08:00
|
|
|
runs-on: ubuntu-20.04
|
2019-08-17 18:04:35 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-11-13 22:15:01 +08:00
|
|
|
node-version: [14.x]
|
2019-08-17 18:04:35 +08:00
|
|
|
|
|
|
|
steps:
|
2020-03-05 09:53:41 +08:00
|
|
|
- uses: actions/checkout@v2
|
2019-08-17 18:04:35 +08:00
|
|
|
|
2019-11-09 14:52:28 +08:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2019-08-17 18:04:35 +08:00
|
|
|
|
2019-11-14 00:31:03 +08:00
|
|
|
- name: Cache node modules
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-build-${{ env.cache-name }}-
|
|
|
|
${{ runner.OS }}-build-
|
|
|
|
${{ runner.OS }}-
|
|
|
|
|
2019-11-09 14:52:28 +08:00
|
|
|
- name: Install Lint Build
|
|
|
|
run: |
|
|
|
|
yarn
|
|
|
|
yarn lint
|
|
|
|
yarn build
|
2019-08-17 18:04:35 +08:00
|
|
|
|
2020-11-13 22:15:01 +08:00
|
|
|
##### gh-pages
|
2019-11-09 14:52:28 +08:00
|
|
|
- name: Push to gh-pages
|
2020-11-13 22:15:01 +08:00
|
|
|
if: github.event_name == 'push' && (startsWith(github.event.ref, 'refs/tags/') || github.event.ref == 'refs/heads/publish')
|
2019-11-09 14:52:28 +08:00
|
|
|
env:
|
2019-11-17 17:56:32 +08:00
|
|
|
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
2019-11-09 14:52:28 +08:00
|
|
|
PUBLISH_DIR: public
|
|
|
|
BRANCH: gh-pages
|
|
|
|
run: |
|
|
|
|
cd $PUBLISH_DIR
|
|
|
|
ls -l
|
|
|
|
git init
|
|
|
|
git config user.name "${GITHUB_ACTOR}"
|
|
|
|
git config user.email "${GITHUB_ACTOR}@noreply.github.com"
|
|
|
|
git add .
|
|
|
|
git status
|
|
|
|
git commit -m "Push to gh-pages"
|
|
|
|
git push -f https://$GITHUB_ACTOR:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git HEAD:$BRANCH
|
2020-08-01 20:49:00 +08:00
|
|
|
|
|
|
|
- name: Send Notification
|
|
|
|
uses: haishanh/actions-telegram-notification@v1
|
2020-10-12 20:51:13 +08:00
|
|
|
if: ${{ always() }}
|
2020-08-01 20:49:00 +08:00
|
|
|
with:
|
|
|
|
notification-token: ${{ secrets.TG_NOTIFICATION_TOKEN }}
|
|
|
|
job-status: ${{ job.status }}
|
2020-11-13 22:15:01 +08:00
|
|
|
|
|
|
|
docker:
|
|
|
|
needs: install
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
with:
|
|
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
- name: Builder instance name
|
|
|
|
run: echo ${{ steps.buildx.outputs.name }}
|
|
|
|
- name: Available platforms
|
|
|
|
run: echo ${{ steps.buildx.outputs.platforms }}
|
|
|
|
- name: Log in to Docker Hub
|
|
|
|
env:
|
|
|
|
DOCKER_USERNAME: ${{ github.actor }}
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
|
|
|
run: |
|
|
|
|
echo "${DOCKER_PASSWORD}" | docker login --username ${DOCKER_USERNAME} --password-stdin
|
|
|
|
- name: Build and push Docker image
|
|
|
|
env:
|
|
|
|
DOCKER_USERNAME: ${{ github.actor }}
|
|
|
|
DOCKER_IMAGE_PLATFORM: linux/amd64,linux/arm/v7,linux/arm64
|
|
|
|
REPOSITORY_NAME: ${{ github.repository }}
|
|
|
|
run: |
|
|
|
|
IFS='/' read -ra repository_name_array <<<"$REPOSITORY_NAME"
|
|
|
|
DOCKER_IMAGE_NAME=$(echo $DOCKER_USERNAME/${repository_name_array[1]} | tr '[:upper:]' '[:lower:]')
|
|
|
|
DOCKER_IMAGE_VERSION=${GITHUB_REF#refs/*/}
|
|
|
|
docker buildx build \
|
|
|
|
--platform "$DOCKER_IMAGE_PLATFORM" \
|
|
|
|
--output "type=image,push=true" \
|
|
|
|
--tag "$DOCKER_IMAGE_NAME":"$DOCKER_IMAGE_VERSION" \
|
|
|
|
--tag "$DOCKER_IMAGE_NAME":latest \
|
|
|
|
--file ./Dockerfile .
|
|
|
|
- name: Send Notification
|
|
|
|
uses: haishanh/actions-telegram-notification@v1
|
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
notification-token: ${{ secrets.TG_NOTIFICATION_TOKEN }}
|
|
|
|
job-status: ${{ job.status }}
|