Skip to content

Commit

Permalink
Replace map with list to preserve order
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimrod committed May 20, 2024
1 parent 1fbd96e commit bc1418c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ on:

permissions:
contents: write
packages: write

jobs:
create-release:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Create a Release
uses: elgohr/Github-Release-Action@v5
with:
title: ${{ github.ref }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -29,13 +32,12 @@ jobs:
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: difft
# (optional) On which platform to distribute the `.tar.gz` file.
tar: unix
# (optional) Target triple, default is host triple.
target: ${{ matrix.target }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit bc1418c

Please sign in to comment.