Update en_us.json #68
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: 压缩资源包(push) | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 缓存assets | |
uses: actions/cache@v3 | |
with: | |
path: /dev/shm/mc_assets/assets.zip | |
key: 1145141919811 | |
- name: 刷新软件源 | |
run: sudo apt update | |
- name: 安装工具依赖 | |
run: sudo apt-get install -y gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad libfuse2 | |
- name: 构建 | |
run: ./makepackage.sh | |
- name: 上传构建结果 | |
uses: actions/upload-artifact@v3 | |
with: | |
path: | | |
build/ | |
!build/work | |
!build/temp |