You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since 2 weeks (around 2nd August as far as I can tell), my github actions using run-on-arch-action systematically rebuild the container when triggered.
I have the instruction githubToken: ${{ github.token }} in my step
I have granted read and write permission in the workflow permission in the action settings for this repo.
The action was running daily for a few month without rebuilding the package
I created a small action to test it and the install step is always run, and the sha256sum is different each time:
name: Check container build
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- qemu_arch: armv7
qemu_distro: ubuntu22.04
- qemu_arch: aarch64
qemu_distro: ubuntu22.04
steps:
- name : Step 1
uses: uraimo/run-on-arch-action@v.2.5.1
with:
arch: ${{ matrix.qemu_arch }}
distro: ${{ matrix.qemu_distro }}
githubToken: ${{ github.token }}
install: |
case "${{ matrix.qemu_arch }}" in
aarch64)
echo " aarch64";
echo "This is the install step";
;;
armv7)
echo " armv7";
echo "This is the install step";
;;
esac
run: |
echo "system installed : This is the run step"
I noticed in the log that a bunch of new messages appeared at the same time as this issue:
Since 2 weeks (around 2nd August as far as I can tell), my github actions using run-on-arch-action systematically rebuild the container when triggered.
githubToken: ${{ github.token }}
in my stepI created a small action to test it and the install step is always run, and the sha256sum is different each time:
I noticed in the log that a bunch of new messages appeared at the same time as this issue:
Also a new version of the package with a different sha256sum is created each time.
Am I missing something or did something change?
The text was updated successfully, but these errors were encountered: