Skip to content

Commit 8a38adb

Browse files
committed
chore: apply Prettier syntax
1 parent b59de25 commit 8a38adb

File tree

2 files changed

+23
-24
lines changed

2 files changed

+23
-24
lines changed

.github/workflows/devstack.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
uses: actions/checkout@v4
2424
with:
2525
repository: openstack/devstack
26-
ref: 'stable/2024.2'
26+
ref: "stable/2024.2"
2727
path: ./devstack
2828

2929
- name: Set up Go
3030
uses: actions/setup-go@v5
3131
with:
32-
go-version: '1.23.x'
32+
go-version: "1.23.x"
3333
cache-dependency-path: |
3434
./go.sum
3535
./external-dns/go.sum

.github/workflows/go.yml

+21-22
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Build, Test and Release Binaries
2-
on:
3-
push
2+
on: push
43

54
permissions:
65
contents: write
@@ -31,24 +30,24 @@ jobs:
3130
needs: build
3231
runs-on: ubuntu-latest
3332
steps:
34-
- name: Checkout Repository
35-
uses: actions/checkout@v4
36-
- name: Login to GitHub Container Registry
37-
uses: docker/login-action@v3
38-
with:
39-
registry: ghcr.io
40-
username: ${{ github.actor }}
41-
password: ${{ secrets.GITHUB_TOKEN }}
42-
- name: Setup Go
43-
uses: actions/setup-go@v5
44-
with:
45-
go-version: 1.23.x
33+
- name: Checkout Repository
34+
uses: actions/checkout@v4
35+
- name: Login to GitHub Container Registry
36+
uses: docker/login-action@v3
37+
with:
38+
registry: ghcr.io
39+
username: ${{ github.actor }}
40+
password: ${{ secrets.GITHUB_TOKEN }}
41+
- name: Setup Go
42+
uses: actions/setup-go@v5
43+
with:
44+
go-version: 1.23.x
4645

47-
- name: Run Goreleaser
48-
if: ${{ github.event_name != 'pull_request' }}
49-
env:
50-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51-
uses: goreleaser/goreleaser-action@v6
52-
with:
53-
version: '~> v2'
54-
args: release --clean
46+
- name: Run Goreleaser
47+
if: ${{ github.event_name != 'pull_request' }}
48+
env:
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50+
uses: goreleaser/goreleaser-action@v6
51+
with:
52+
version: "~> v2"
53+
args: release --clean

0 commit comments

Comments
 (0)