測試自動更新版本號

This commit is contained in:
踢低吸 2022-08-31 05:58:22 +00:00
parent 12ec32f615
commit 2034cc9673

19
.github/workflows/auto_newversion.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Auto Update Version
on:
workflow_dispatch:
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: jitterbit/get-changed-files@v1
- run: |
for changed_file in ${{ steps.files.outputs.all }}; do
echo "Do something with this ${changed_file}."
done