We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef1ff5b commit 0e460d2Copy full SHA for 0e460d2
.github/workflows/containerize.yml
@@ -15,9 +15,11 @@ jobs:
15
run: sed "s|http://localhost:3013/graphql|https://graphql.juffalow.com/graphql|g" ./src/config.example.ts > ./src/config.ts
16
- name: Build
17
run: docker build -t juffalow/react-relay-example .
18
+ - name: Install doctl
19
+ uses: digitalocean/action-doctl@v2
20
+ with:
21
+ token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
22
- name: Push image to Digital Ocean Container Registry
- env:
- DIGITALOCEAN_ACCESS_TOKEN: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
23
run: |
24
VERSION=${GITHUB_REF#"refs/tags/"}
25
IMAGE_NAME=registry.digitalocean.com/juffalow/react-relay-example
0 commit comments