Skip to content

Commit

Permalink
ci: bump actions
Browse files Browse the repository at this point in the history
  • Loading branch information
delta1 committed Jul 25, 2024
1 parent a9b30d6 commit 3739c45
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/guix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ on:
required: true
ref:
description: "elements git ref"
default: "refs/tags/elements-23.2.1"
default: "refs/tags/elements-23.2.2"
required: true
tag:
description: "the build tag"
default: "elements-23.2.1"
default: "elements-23.2.2"
required: true

jobs:
Expand All @@ -42,27 +42,27 @@ jobs:
BUILD_TAG: ${{ inputs.tag }}
HOST: ${{ matrix.host }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4
- name: debug
run: |
pwd
whoami
- name: "checkout elements"
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4
with:
repository: ${{ inputs.repo }}
path: "elements"
ref: ${{ inputs.ref }}
- name: gchr.io login
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.READ_TOKEN }}
- name: "build script"
run: |
./buildelements.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: output
path: output/
Expand All @@ -78,8 +78,8 @@ jobs:
BUILD_TAG: ${{ inputs.tag }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: output
- name: script
Expand All @@ -90,7 +90,7 @@ jobs:
cp sha256sums.txt release
echo -e "\`\`\`\n$(cat sha256sums.txt)\n\`\`\`" > notes
gh release create "$BUILD_TAG" --title "$BUILD_TAG" --notes-file notes release/*
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: sha256sums.txt
path: sha256sums.txt

0 comments on commit 3739c45

Please sign in to comment.