Skip to content

Commit

Permalink
github actions refactor, removed cache API endpoints from postman
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterlong committed Dec 15, 2020
1 parent e50551d commit a6504c2
Show file tree
Hide file tree
Showing 3 changed files with 171 additions and 143 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,14 @@ jobs:
run: echo "VERSION=$(cat version.txt)" >> $GITHUB_ENV
shell: bash

- name: Set up QEMU
uses: docker/setup-qemu-action@v1

- name: Set up Docker Buildx
uses: crazy-max/ghaction-docker-buildx@v3
uses: docker/setup-buildx-action@v1
id: buildx
with:
install: true

- name: Docker Login
env:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,14 @@ jobs:
run: echo "VERSION=$(cat version.txt)" >> $GITHUB_ENV
shell: bash

- name: Set up QEMU
uses: docker/setup-qemu-action@v1

- name: Set up Docker Buildx
uses: crazy-max/ghaction-docker-buildx@v3
uses: docker/setup-buildx-action@v1
id: buildx
with:
install: true

- name: Docker Login
env:
Expand Down
Loading

0 comments on commit a6504c2

Please sign in to comment.