Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
kiorky committed Nov 23, 2022
1 parent ebc796f commit d473795
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
if ( echo "$GITHUB_REF" | egrep -q "${RELEASABLE_BRANCHES}" ) \
&& ( echo "$GITHUB_REPOSITORY" | egrep -q "${RELEASABLE_REPOS}" )
then releasable=true;else releasable=false;fi
echo "::set-output name=releasable::$releasable"
echo "::set-output name=silent::$(echo $silent)"
echo "releasable=$releasable" >> $GITHUB_OUTPUT
echo "silent=$(echo $silent)" >> $GITHUB_OUTPUT
id: v
- uses: docker/login-action@v1
- uses: docker/login-action@v2
with: {username: "${{ secrets.DOCKER_HUB_USERNAME }}", password: "${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}"}
- name: Activate docker experimental
run: |-
sudo bash -exc "service docker stop;python -c \"d='/etc/docker/daemon.json';\
import json;c=json.load(open(d));c['experimental']=True;\
open(d, 'w').write(json.dumps(c))\";systemctl restart docker"
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: build & release
run: set -ex;
IMGV=${IMG_RELEASE};
Expand Down

0 comments on commit d473795

Please sign in to comment.