There was an error while loading. Please reload this page.
1 parent 70f95fc commit b04f1e1Copy full SHA for b04f1e1
1 file changed
.github/workflows/push-dev.yml
@@ -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
30
31
32
+ uses: ./.github/workflows/a11y-check.yml
33
0 commit comments