Skip to content

Commit a2a6419

Browse files
committed
chore: yamlfix changes
1 parent 39fe2d3 commit a2a6419

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

.github/workflows/create-release.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,30 @@ on:
66
- '*.*.*'
77
jobs:
88
build:
9-
runs-on: ubuntu-latest
9+
runs-on: "ubuntu-latest"
1010
steps:
11-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
12-
- uses: astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb # v6.1.0
11+
- uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" # v4.2.2
12+
- uses: "astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb" # v6.1.0
1313
with:
1414
enable-cache: true
1515
prune-cache: false
16-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
16+
- uses: "actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065" # v5.6.0
1717
with:
18-
python-version-file: pyproject.toml
19-
- run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
20-
- run: uv build
21-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
18+
python-version-file: "pyproject.toml"
19+
- run: "echo \"SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)\" >> $GITHUB_ENV"
20+
- run: "uv build"
21+
- uses: "actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02" # v4.6.2
2222
with:
23-
path: ./dist
23+
path: "./dist"
2424
create-release:
25-
needs: [build]
26-
runs-on: ubuntu-latest
25+
needs:
26+
- "build"
27+
runs-on: "ubuntu-latest"
2728
permissions:
28-
contents: write
29+
contents: "write"
2930
steps:
30-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
31-
- name: create release
32-
run: gh release create --draft --repo ${{ github.repository }} ${{ github.ref_name }} artifact/*
31+
- uses: "actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093" # v4.3.0
32+
- name: "create release"
33+
run: "gh release create --draft --repo ${{ github.repository }} ${{ github.ref_name }} artifact/*"
3334
env:
34-
GH_TOKEN: ${{ github.token }}
35+
GH_TOKEN: "${{ github.token }}"

0 commit comments

Comments
 (0)