feat: 侧边栏菜单支持配置为自动选中,收藏页面调整为左右结构 #206
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: Build workflow | |
on: | |
pull_request: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: Build ipa | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Build | |
env: | |
scheme: ${{ 'default' }} | |
platform: ${{ 'iOS Simulator' }} | |
run: | | |
bundle install -j 4 | |
bundle exec fastlane build_unsign_ipa | |
- name: List, filter and delete artifacts | |
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
uses: actions/github-script@v6 | |
id: artifact | |
with: | |
script: | | |
const { owner, repo } = context.issue | |
const res = await github.rest.actions.listArtifactsForRepo({ | |
owner, | |
repo, | |
}) | |
res.data.artifacts | |
.forEach(({ id }) => { github.rest.actions.deleteArtifact({ owner, repo, artifact_id: id, }) }) | |
- name: Upload latest artifact | |
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: main-unsigned.ipa | |
path: BilbiliAtvDemo.ipa | |
retention-days: 30 |