mirror of
https://github.com/WJQSERVER-STUDIO/ghproxy.git
synced 2026-02-03 00:01:10 +08:00
update
This commit is contained in:
parent
749093c8d5
commit
d77a3e0b00
2 changed files with 15 additions and 0 deletions
7
.github/workflows/build-dev.yml
vendored
7
.github/workflows/build-dev.yml
vendored
|
|
@ -53,6 +53,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
- name: Load VERSION
|
||||||
|
run: |
|
||||||
|
if [ -f DEV-VERSION ]; then
|
||||||
|
echo "VERSION=$(cat DEV-VERSION)" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "DEV-VERSION file not found!" && exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
|
||||||
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
|
@ -53,6 +53,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
- name: Load VERSION
|
||||||
|
run: |
|
||||||
|
if [ -f DEV-VERSION ]; then
|
||||||
|
echo "VERSION=$(cat DEV-VERSION)" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "DEV-VERSION file not found!" && exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue