Skip to content

Commit b04f1e1

Browse files
committed
log public ip address
1 parent 70f95fc commit b04f1e1

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/push-dev.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: push to dev
2+
on:
3+
push:
4+
branches:
5+
- '*'
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
11+
jobs:
12+
deploy:
13+
permissions:
14+
contents: read
15+
id-token: write
16+
with:
17+
feature_path: "uswds-redesign"
18+
uses: ./.github/workflows/deploy.yml
19+
secrets: inherit
20+
21+
log-runner-ip:
22+
needs: deploy
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Log public IP address
26+
run: curl -s https://api.ipify.org && echo
27+
28+
a11y-check:
29+
needs: deploy
30+
with:
31+
feature_path: "uswds-redesign"
32+
uses: ./.github/workflows/a11y-check.yml
33+
secrets: inherit

0 commit comments

Comments
 (0)