mirror of
https://github.com/jaywcjlove/awesome-mac.git
synced 2026-01-12 23:07:06 +08:00
100 lines
3.7 KiB
YAML
100 lines
3.7 KiB
YAML
name: GitHub Actions Build and Deploy awesome-mac
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
build-deploy:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 14
|
|
|
|
- run: npm install
|
|
- run: npm run build
|
|
- run: npm run create:ast
|
|
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./dist
|
|
user_name: github-actions[bot]
|
|
user_email: github-actions[bot]@users.noreply.github.com
|
|
|
|
- name: Create Tag
|
|
id: create_tag
|
|
uses: jaywcjlove/create-tag-action@v1.3.6
|
|
with:
|
|
package-path: ./package.json
|
|
|
|
- name: Generate Changelog
|
|
id: changelog
|
|
uses: jaywcjlove/changelog-generator@v1.5.3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
head-ref: ${{steps.create_tag.outputs.version}}
|
|
filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}'
|
|
|
|
- name: Create Release
|
|
uses: ncipollo/release-action@v1
|
|
if: steps.create_tag.outputs.successful
|
|
with:
|
|
name: ${{ steps.create_tag.outputs.version }}
|
|
tag: ${{ steps.create_tag.outputs.version }}
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
body: |
|
|
[](https://uiwjs.github.io/npm-unpkg/#/pkg/awesome-mac@${{steps.create_tag.outputs.versionNumber}}/file/README.md) [](https://hub.docker.com/r/wcjiang/awesome-mac)
|
|
|
|
Documentation ${{ steps.changelog.outputs.tag }}: https://raw.githack.com/jaywcjlove/awesome-mac/${{ steps.changelog.outputs.gh-pages-short-hash }}/index.html
|
|
|
|
Comparing Changes: ${{ steps.changelog.outputs.compareurl }}
|
|
|
|
${{ steps.changelog.outputs.changelog }}
|
|
|
|
```bash
|
|
npm i awesome-mac@${{steps.create_tag.outputs.versionNumber}}
|
|
# dist/awesome-mac.json
|
|
# dist/awesome-mac.zh.json
|
|
```
|
|
|
|
## Docker
|
|
|
|
```bash
|
|
docker pull wcjiang/awesome-mac:${{steps.changelog.outputs.version}}
|
|
```
|
|
|
|
```bash
|
|
docker run --name awesome-mac --rm -d -p 9881:3000 wcjiang/awesome-mac:${{steps.changelog.outputs.version}}
|
|
# Or
|
|
docker run --name awesome-mac -itd -p 9881:3000 wcjiang/awesome-mac:${{steps.changelog.outputs.version}}
|
|
```
|
|
|
|
Visit the following URL in your browser
|
|
|
|
```bash
|
|
http://localhost:9881/
|
|
```
|
|
|
|
- run: npm install @jsdevtools/npm-publish -g
|
|
- run: npm-publish --token="${{ secrets.NPM_TOKEN }}" ./package.json
|
|
|
|
# Create Docker Image
|
|
- name: Docker login
|
|
if: steps.create_tag.outputs.successful
|
|
run: docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build Awesome Mac image
|
|
if: steps.create_tag.outputs.successful
|
|
run: docker image build -t awesome-mac .
|
|
|
|
- name: Tags & Push image
|
|
if: steps.create_tag.outputs.successful
|
|
run: |
|
|
echo "outputs.tag - ${{ steps.changelog.outputs.version }}"
|
|
docker tag awesome-mac ${{ secrets.DOCKER_USER }}/awesome-mac:${{steps.changelog.outputs.version}}
|
|
docker tag awesome-mac ${{ secrets.DOCKER_USER }}/awesome-mac:latest
|
|
docker push ${{ secrets.DOCKER_USER }}/awesome-mac:${{steps.changelog.outputs.version}}
|
|
docker push ${{ secrets.DOCKER_USER }}/awesome-mac:latest |