From 6f064c76972b9b56436fd04b93d616399c585ee3 Mon Sep 17 00:00:00 2001 From: Chris Thompson Date: Thu, 22 May 2025 17:27:36 -0400 Subject: [PATCH] Duplicate (almost) the workflow of the first step failing elsewhere --- .forgejo/workflows/demo.yml | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/demo.yml b/.forgejo/workflows/demo.yml index d26e64d..23c0033 100644 --- a/.forgejo/workflows/demo.yml +++ b/.forgejo/workflows/demo.yml @@ -6,8 +6,35 @@ on: jobs: build: runs-on: docker + container: + image: git.agaric.com/agaric/deploycontainer:latest + credentials: + username: ${ github.actor } + password: ${ secrets.github_token } + env: + COMPOSER_ARGS: "install --no-dev --ignore-platform-reqs --no-scripts --optimize-autoloader" steps: - - run: echo All Good, REALLY + - name: checkout + uses: actions/checkout@v3 + - name: beep + run: | + echo "Beep!" + echo "Beep!" + # - name: composer install + # run: | + # composer config -g gitlab-token.git.drupalcode.org "${{ secrets.COMPOSER_TOKEN }}" + # composer ${COMPOSER_ARGS} + - name: save build + uses: https://code.forgejo.org/forgejo/upload-artifact@v4 + with: + name: build + path: | + config/* + drush/* + scripts/* + vendor/* + web/* + composer.* deploy: needs: build if: vars.DEPLOY_TEST == 1