We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32ca2f5 commit 7ed46d9Copy full SHA for 7ed46d9
1 file changed
.github/workflows/codeplugs.yml
@@ -19,14 +19,22 @@ jobs:
19
uses: actions/setup-python@v2
20
with:
21
python-version: 3.8
22
+ - name: Get current time
23
+ uses: 1466587594/get-current-time@v2
24
+ id: current-time
25
+ with:
26
+ format: YYYYMMDD-A
27
+ utcOffset: "-08:00"
28
+ - name: Cache .cache
29
+ uses: actions/cache@v2
30
31
+ path: ~/.cache
32
+ key: dzcb-cache-${{ steps.current-time.outputs.formattedTime }}
33
- name: Install dependencies
34
run: |
35
python -m pip install --upgrade pip
36
pip install tox
37
- name: Build Codeplugs
- env:
- REPEATERBOOK_USER: ${{ secrets.REPEATERBOOK_USER }}
- REPEATERBOOK_PASSWD: ${{ secrets.REPEATERBOOK_PASSWD }}
38
run: tox
39
- name: Archive Codeplugs
40
uses: actions/upload-artifact@v2
0 commit comments