Duplicate (almost) the workflow of the first step failing elsewhere
All checks were successful
/ build (push) Successful in 6s
/ deploy (push) Successful in 2s

This commit is contained in:
Chris Thompson 2025-05-22 17:27:36 -04:00
parent 488a3fd110
commit 6f064c7697

View file

@ -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