Skip to content

Commit

Permalink
set secrets as env
Browse files Browse the repository at this point in the history
  • Loading branch information
lim-deriv committed Sep 18, 2023
1 parent 8639d25 commit f34b888
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.34
env:
PAUSE_USER: ${{ secrets.PAUSE_USER }}
PAUSE_PASSWORD: ${{ secrets.PAUSE_PASSWORD }}
steps:
- uses: actions/checkout@v4
- name: Install libraries and other packages
Expand All @@ -69,7 +72,7 @@ jobs:
cpanm -n --installdeps .
dzil listdeps --author --missing --cpanm-versions | xargs cpanm -n
- name: setup PAUSE account
run: echo -e "user ${{ secrets.PAUSE_USER }}\npassword ${{ secrets.PAUSE_PASSWORD }}\n" >> ~/.pause
run: echo -e "user $PAUSE_USER\npassword $PAUSE_PASSWORD\n" >> ~/.pause
- name: setup git
run: |
git config --global user.email "circleci@binary.com"
Expand Down

0 comments on commit f34b888

Please sign in to comment.