|
10 | 10 | runs-on: ubuntu-latest |
11 | 11 | strategy: |
12 | 12 | matrix: |
13 | | - python: ["3.9"] |
| 13 | + python: ["3.10"] |
14 | 14 | steps: |
15 | 15 | - name: Checkout code |
16 | 16 | uses: actions/checkout@v4 |
|
55 | 55 | runs-on: ubuntu-latest |
56 | 56 | strategy: |
57 | 57 | matrix: |
58 | | - python: ["3.9"] |
| 58 | + python: ["3.10"] |
59 | 59 | steps: |
60 | 60 | - uses: actions/checkout@v4 |
61 | 61 | - name: Set up Python |
|
71 | 71 | runs-on: ubuntu-latest |
72 | 72 | strategy: |
73 | 73 | matrix: |
74 | | - python: ["3.9", "3.10", "3.11", "3.12", "3.13"] |
| 74 | + python: ["3.10", "3.11", "3.12", "3.13"] |
75 | 75 | steps: |
76 | 76 | - uses: actions/checkout@v4 |
77 | 77 | - name: Set up Python |
@@ -106,7 +106,7 @@ jobs: |
106 | 106 | runs-on: ubuntu-latest |
107 | 107 | strategy: |
108 | 108 | matrix: |
109 | | - python: ["3.9", "3.10", "3.11", "3.12", "3.13"] |
| 109 | + python: ["3.10", "3.11", "3.12", "3.13"] |
110 | 110 | steps: |
111 | 111 | - uses: actions/checkout@v4 |
112 | 112 | - name: Set up Python |
@@ -141,7 +141,7 @@ jobs: |
141 | 141 | runs-on: ubuntu-latest |
142 | 142 | strategy: |
143 | 143 | matrix: |
144 | | - python: ["3.9", "3.10", "3.11", "3.12", "3.13"] |
| 144 | + python: ["3.10", "3.11", "3.12", "3.13"] |
145 | 145 | steps: |
146 | 146 | - uses: actions/checkout@v4 |
147 | 147 | - name: Set up Python |
@@ -227,7 +227,7 @@ jobs: |
227 | 227 | uses: peaceiris/actions-gh-pages@v3 |
228 | 228 | with: |
229 | 229 | github_token: ${{ secrets.GITHUB_TOKEN }} |
230 | | - publish_dir: ./ui/out |
| 230 | + publish_dir: ./src/ui/out |
231 | 231 | destination_dir: ui/${TAG} |
232 | 232 | keep_files: false |
233 | 233 | user_name: ${{ github.actor }} |
@@ -297,7 +297,12 @@ jobs: |
297 | 297 | with: |
298 | 298 | fetch-depth: 0 |
299 | 299 | - name: Get version from branch |
300 | | - run: echo "PACKAGE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV |
| 300 | + run: | |
| 301 | + echo "package_version=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV |
| 302 | + - name: Fail if version is unset |
| 303 | + if: ${{ env.package_version == '' }} |
| 304 | + run: | |
| 305 | + exit 1 |
301 | 306 | - name: Buildah build |
302 | 307 | id: build-image |
303 | 308 | uses: redhat-actions/buildah-build@v2 |
|
0 commit comments