Bump Roslynator.Analyzers from 4.3.0 to 4.4.0 (#899) #631
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
#### Publish tags to docker hub | |
name: 📦 Deploy dev docker | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
deploy_docker_addon_dev: | |
name: 📦 Deploy to Docker add-on dev | |
runs-on: ubuntu-latest | |
environment: CI - release environment | |
steps: | |
- name: 📤 Checkout the repository | |
uses: actions/checkout@main | |
- name: 📆 Set version in code and docker files | |
run: | | |
echo setting source version: dev | |
sed -i '/ private const string Version = /c\ private const string Version = "dev";' ${{github.workspace}}/src/Runtime/NetDaemon.Runtime/Internal/NetDaemonRuntime.cs | |
sed -i '/ io.hass.version=/c\ io.hass.version="dev"' ${{github.workspace}}/Dockerfile.AddOn | |
- name: 📎 Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: 🔧 Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: 🧰 Available platforms | |
run: echo ${{ steps.buildx.outputs.platforms }} | |
- name: 🔓 Login to Docker hub | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: 🔓 Login to GitHub Container Registry | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: 🛠️ Run Buildx | |
run: | | |
docker buildx build \ | |
--platform linux/arm,linux/arm64,linux/amd64 \ | |
--output "type=image,push=true" \ | |
--no-cache \ | |
--file ./Dockerfile.AddOn . \ | |
--compress \ | |
--tag netdaemon/netdaemon_addon3:dev \ | |
--tag ghcr.io/net-daemon/netdaemon_addon3:dev | |
deploy_docker_dev: | |
name: 📦 Deploy to Docker dev | |
runs-on: ubuntu-latest | |
environment: CI - release environment | |
steps: | |
- name: 📤 Checkout the repository | |
uses: actions/checkout@main | |
- name: 📆 Set version number | |
run: | | |
echo setting source version: dev | |
sed -i '/ private const string Version = /c\ private const string Version = "dev";' ${{github.workspace}}/src/Runtime/NetDaemon.Runtime/Internal/NetDaemonRuntime.cs | |
sed -i '/ io.hass.version=/c\ io.hass.version="dev"' ${{github.workspace}}/Dockerfile.AddOn | |
- name: 📎 Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: 🔧 Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: 🧰 Available platforms | |
run: echo ${{ steps.buildx.outputs.platforms }} | |
- name: 🔓 Login to Docker hub | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: 🔓 Login to GitHub Container Registry | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: 🛠️ Run Buildx | |
run: | | |
docker buildx build \ | |
--platform linux/arm,linux/arm64,linux/amd64 \ | |
--output "type=image,push=true" \ | |
--no-cache \ | |
--file ./Dockerfile . \ | |
--compress \ | |
--tag netdaemon/netdaemon3:dev \ | |
--tag ghcr.io/net-daemon/netdaemon3:dev |