Skip to content

chore: add proxy_range proxy_range-tips for storages (#178) #56

chore: add proxy_range proxy_range-tips for storages (#178)

chore: add proxy_range proxy_range-tips for storages (#178) #56

Workflow file for this run

name: release
on:
push:
tags:
- "*"
jobs:
changelog:
name: Create release changelog
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate changelog
run: npx changelogithub # or changelogithub@0.12 if ensure the stable result
env:
GITHUB_TOKEN: ${{secrets.MY_TOKEN}}
release:
needs: changelog
strategy:
matrix:
platform: [ubuntu-latest]
name: Release
runs-on: ${{ matrix.platform }}
steps:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
registry-url: "https://registry.npmjs.org"
- uses: pnpm/action-setup@v2.4.0
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
path: alist-web
persist-credentials: false
fetch-depth: 0
submodules: recursive
- name: Checkout dist repo
uses: actions/checkout@v4
with:
repository: alist-org/web-dist
ref: main
path: web-dist
persist-credentials: false
fetch-depth: 0
- name: Build
run: |
mv alist-web/release.sh .
bash release.sh
env:
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
- name: Publish npm
run: |
cd alist-web
echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > ~/.npmrc
pnpm publish --no-git-checks
cd ..
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Upload dist files
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.MY_TOKEN }}
branch: main
directory: web-dist
repository: alist-org/web-dist
- name: Release
uses: softprops/action-gh-release@v1
with:
files: compress/*