π User is not able to delete or move files that was share with him (#β¦ #152
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish-backend | |
# Deploy backend only if push on "main" | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "tdrive/docker/**" | |
- "tdrive/backend/**" | |
- ".github/workflows/**" | |
jobs: | |
publish-node: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: "Setup version" | |
run: 'echo "DOCKERTAGVERSION=2023.Q1.1223" >> $GITHUB_ENV' | |
- name: Set env to develop | |
if: endsWith(github.ref, '/develop') | |
run: 'echo "DOCKERTAG=develop" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2023.Q1.1223" >> $GITHUB_ENV' | |
- name: Set env to develop | |
if: endsWith(github.ref, '/qa') | |
run: 'echo "DOCKERTAG=qa" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2023.Q1.1223" >> $GITHUB_ENV' | |
- name: Set env to develop | |
if: endsWith(github.ref, '/canary') | |
run: 'echo "DOCKERTAG=canary" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=${{ env.DOCKERTAGVERSION }}-canary" >> $GITHUB_ENV' | |
- name: Set env to production | |
if: endsWith(github.ref, '/main') | |
run: 'echo "DOCKERTAG=latest" >> $GITHUB_ENV' | |
- name: "Push to the registry following labels:" | |
run: | | |
echo "${{ env.DOCKERTAG }},${{ env.DOCKERTAGVERSION }}" | |
- uses: actions/checkout@v2 | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: tdrive/tdrive-node | |
username: ${{ secrets.REGISTRY_USERNAME }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
workdir: tdrive | |
registry: docker-registry.linagora.com | |
context: . | |
target: production | |
buildoptions: "-t docker-registry.linagora.com/tdrive/tdrive-node -f docker/tdrive-node/Dockerfile" | |
tags: "${{ env.DOCKERTAG }},${{ env.DOCKERTAGVERSION }}" | |
- name: Publish to dockerhub | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: twakedrive/tdrive-node | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
workdir: tdrive | |
context: . | |
target: production | |
buildoptions: "-t twakedrive/tdrive-node -f docker/tdrive-node/Dockerfile" | |
tags: "${{ env.DOCKERTAG }},${{ env.DOCKERTAGVERSION }}" |