a
Some checks failed
Build and Deploy docker container / build (push) Failing after 39s

This commit is contained in:
Jonathan Branan 2024-11-02 21:28:57 -05:00
parent 4145aede62
commit b6770f3bba

View File

@ -13,11 +13,6 @@ jobs:
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: '1.20' go-version: '1.20'
- uses: https://gitea.com/actions/go-hashfiles@v0.0.1
id: get-hash
with:
patterns: |-
**/yarn.lock
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set Node.js 22.x - name: Set Node.js 22.x
uses: actions/setup-node@v4 uses: actions/setup-node@v4
@ -26,6 +21,11 @@ jobs:
cache-dependency-path: 'yarn.lock' cache-dependency-path: 'yarn.lock'
- name: Install Yarn - name: Install Yarn
run: npm install -g yarn run: npm install -g yarn
- uses: https://gitea.com/actions/go-hashfiles@v0.0.1
id: get-hash
with:
patterns: |-
**/yarn.lock
- name: Get yarn cache directory path - name: Get yarn cache directory path
id: yarn-cache-dir-path id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT