Skip to content

Commit f5d79c1

Browse files
author
Capirca Team
committed
Refactor Github Action per b/485167538
PiperOrigin-RevId: 872104412
1 parent a95bfff commit f5d79c1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222
- name: Log into registry
2323
run: |
24-
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
24+
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${GITHUB_ACTOR} --password-stdin
2525
2626
- name: Build and tag the image
2727
run: docker build . --tag $IMAGE_NAME

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
python3 -m pip -v install dist/capirca*py3*.whl
7373
aclgen --output_directory ./output --logtostderr
7474
cd ./output/ && \
75-
zip -r ../../artifacts/capirca_output_${{ env.wfdt }}.zip .
75+
zip -r ../../artifacts/capirca_output_${wfdt}.zip .
7676
cd ..
7777
python3 -m pip -v uninstall -y capirca
7878
- name: Perform end-to-end testing with master branch

0 commit comments

Comments
 (0)