diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9a849a7a..a66d368a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,31 +12,31 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Create Conan Cache - run: docker volume create ConanCache - - - name: Cache Artifacts - id: cache-primes - uses: actions/cache@v3 - with: - path: /var/lib/docker/volumes/ConanCache - key: $(docker compose -f bin/docker-compose.yml run --rm bash conan profile show) - - - name: Generate MASL - run: | - cd models/ - ./gen_all.sh - + # - name: Create Conan Cache + # run: docker volume create ConanCache + # + # - name: Cache Artifacts + # id: cache-primes + # uses: actions/cache@v3 + # with: + # path: /var/lib/docker/volumes/ConanCache + # key: $(docker compose -f bin/docker-compose.yml run --rm bash conan profile show) + # + # - name: Generate MASL + # run: | + # cd models/ + # ./gen_all.sh + # - name: Load .env uses: aarcangeli/load-dotenv@v1.0.0 with: path: bin/ - - - name: Build and Publish - env: MUNIN_VERSION=${{ github.ref_name }} - run: | - cd models/ - ./publish_all.sh + # + # - name: Build and Publish + # env: MUNIN_VERSION=${{ github.ref_name }} + # run: | + # cd models/ + # ./publish_all.sh - uses: docker/setup-buildx-action@v2