Skip to content

create draft

create draft #6

Workflow file for this run

name: Build All Latest Assets
on:
push:
branches: [oscar/release-3.6]
jobs:
# build-alpine:
# uses: ./.github/workflows/build-alpine.yml
# build-linux:
# uses: ./.github/workflows/build-linux.yml
# build-linuxstatic:
# uses: ./.github/workflows/build-linuxstatic.yml
# build-macos:
# uses: ./.github/workflows/build-macos.yml
# build-windows:
# uses: ./.github/workflows/build-windows.yml
collect-artifacts:
permissions:
contents: write
actions: write
runs-on: ubuntu-latest
# needs: [build-alpine, build-linux, build-linuxstatic, build-macos, build-windows]
steps:
- run: echo Is making new release? '${{ inputs.newRelease }}'
- name: Checkout
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
path: downloaded-artifacts
run-id: 14412724376
- name: Get previous release tag
env:
GITHUB_TOKEN: ${{ github.token }}
id: get_previous_release
run: |
PREV_RELEASE=$(gh release list --limit 1 --exclude-drafts --exclude-pre-releases | cut -f3)
echo "Using release ${PREV_RELEASE}"
echo "prev_release=${PREV_RELEASE}" >> $GITHUB_OUTPUT
# - name: Get previously released artifacts
# if: ${{ inputs.newRelease }}
# env:
# GITHUB_TOKEN: ${{ github.token }}
# run: |
# gh release download ${{ steps.get_previous_release.outputs.prev_release }} --dir release-artifacts
- name: Create artifact folders
run: mkdir artifact-binaries && mkdir artifact-shas
# - name: Copy previous release artifacts to artifact folders
# if: ${{ inputs.newRelease }}
# run: |
# pushd release-artifacts
# pwd
# ls -la
# mv *.sha256sum ../artifact-shas/.
# mv * ../artifact-binaries/.
# popd
- name: Copy current workflow artifacts to artifact folders
run: |
pushd downloaded-artifacts
pwd
ls -la
for f in $(ls); do
mv $f/*.sha256sum ../artifact-shas/.
mv $f/* ../artifact-binaries/.
done
popd
- name: Check SHAs
run: |
cd artifact-binaries
ls ../artifact-shas/*.sha256sum | xargs sha256sum --check
- name: Generate SHA summary
id: generate_sha_file
run: |
echo "---" >> $GITHUB_STEP_SUMMARY
echo "Update $(date -u +%F) $(date -u +%T) GMT/UTC" >> $GITHUB_STEP_SUMMARY
echo "### SHAs of produced and carried forward binaries by this workflow" >> $GITHUB_STEP_SUMMARY
echo " - $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
sha_output_file=${GITHUB_SHA}_${RANDOM}_shas.txt
echo "sha_output_file=${sha_output_file}" >> $GITHUB_OUTPUT
cat artifact-shas/*.sha256sum > ${sha_output_file}
cat artifact-shas/*.sha256sum >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
# Get a random string of characters to represent the EOF delimiter
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "sha_summary<<$EOF" >> $GITHUB_ENV
cat $GITHUB_STEP_SUMMARY >> $GITHUB_ENV
echo "$EOF" >> $GITHUB_ENV
- name: Determine release tag to upload assets to and draft type
run: |
echo "use_release_tag=draft_release_${{ github.sha }}" >> $GITHUB_ENV
echo "create_draft=true" >> $GITHUB_ENV
- name: Add binaries to release
id: create_release
uses: softprops/action-gh-release@d4e8205d7e959a9107da6396278b2f1f07af0f9b
with:
token: ${{ github.token }}
draft: ${{ env.create_draft }}
tag_name: ${{ env.use_release_tag }}
files: |
artifact-shas/*
artifact-binaries/*
body: '${{ env.sha_summary }}'
generate_release_notes: true
append_body: true
- name: Add release url to summary
run: echo "Release created/updated at ${{ steps.create_release.outputs.url }}" >> $GITHUB_STEP_SUMMARY
- name: Create PR for expected shas update
run: |
# trigger the update-expected.yml workflow with the latest shas
curl -X POST \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/actions/workflows/update-expected.yml/dispatches \
-d '{"ref":"main","inputs":{"shas":"$(cat ${{ steps.generate_sha_file.outputs.sha_output_file }})"}}'